You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-efs): This release adds elastic as a new ThroughputMode value for EFS file systems and adds AFTER_1_DAY as a value for TransitionToIARules.
Copy file name to clipboardExpand all lines: clients/client-efs/src/EFS.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,11 @@ export class EFS extends EFSClient {
157
157
* as the access point's root directory. Applications using the access point can only access data in
158
158
* the application's own directory and any subdirectories. To learn more, see <a href="https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html">Mounting a file system using EFS access
159
159
* points</a>.</p>
160
+
* <note>
161
+
* <p>If multiple requests to create access points on the same file system are sent in quick succession, and the file system is
162
+
* near the limit of 120 access points, you may experience a throttling response for these requests. This
163
+
* is to ensure that the file system does not exceed the stated access point limit.</p>
164
+
* </note>
160
165
* <p>This operation requires permissions for the <code>elasticfilesystem:CreateAccessPoint</code> action.</p>
* as the access point's root directory. Applications using the access point can only access data in
37
37
* the application's own directory and any subdirectories. To learn more, see <a href="https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html">Mounting a file system using EFS access
38
38
* points</a>.</p>
39
+
* <note>
40
+
* <p>If multiple requests to create access points on the same file system are sent in quick succession, and the file system is
41
+
* near the limit of 120 access points, you may experience a throttling response for these requests. This
42
+
* is to ensure that the file system does not exceed the stated access point limit.</p>
43
+
* </note>
39
44
* <p>This operation requires permissions for the <code>elasticfilesystem:CreateAccessPoint</code> action.</p>
40
45
* @example
41
46
* Use a bare-bones client and the command you need to make an API call.
* <p>Specifies the throughput mode for the file system, either <code>bursting</code> or
657
-
* <code>provisioned</code>. If you set <code>ThroughputMode</code> to
658
-
* <code>provisioned</code>, you must also set a value for
658
+
* <p>Specifies the throughput mode for the file system. The mode can be <code>bursting</code>,
659
+
* <code>provisioned</code>, or <code>elastic</code>. If you set <code>ThroughputMode</code> to
660
+
* <code>provisioned</code>, you must also set a value for
659
661
* <code>ProvisionedThroughputInMibps</code>. After you create the file system, you can
660
662
* decrease your file system's throughput in Provisioned Throughput mode or change between
661
-
* the throughput modes, as long as it’s been more than 24 hours since the last decrease or
662
-
* throughput mode change. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput">Specifying throughput with
663
-
* provisioned mode</a> in the <i>Amazon EFS User Guide</i>. </p>
663
+
* the throughput modes, with certain time restrictions. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput">Specifying
664
+
* throughput with provisioned mode</a> in the <i>Amazon EFS User
0 commit comments