@aws-sdk/client-efs 3.299.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-types/commands/CreateAccessPointCommand.d.ts +25 -0
  2. package/dist-types/commands/CreateFileSystemCommand.d.ts +16 -0
  3. package/dist-types/commands/CreateMountTargetCommand.d.ts +8 -0
  4. package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateTagsCommand.d.ts +9 -0
  6. package/dist-types/commands/DeleteAccessPointCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteFileSystemCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +3 -0
  9. package/dist-types/commands/DeleteMountTargetCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteTagsCommand.d.ts +6 -0
  12. package/dist-types/commands/DescribeAccessPointsCommand.d.ts +6 -0
  13. package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +6 -0
  17. package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +3 -0
  18. package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeMountTargetsCommand.d.ts +7 -0
  20. package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +5 -0
  21. package/dist-types/commands/DescribeTagsCommand.d.ts +5 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
  23. package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +6 -0
  24. package/dist-types/commands/PutAccountPreferencesCommand.d.ts +3 -0
  25. package/dist-types/commands/PutBackupPolicyCommand.d.ts +6 -0
  26. package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +5 -0
  27. package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +9 -0
  28. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  29. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  30. package/dist-types/commands/UpdateFileSystemCommand.d.ts +5 -0
  31. package/package.json +8 -8
@@ -39,6 +39,31 @@ export interface CreateAccessPointCommandOutput extends AccessPointDescription,
39
39
  * import { EFSClient, CreateAccessPointCommand } from "@aws-sdk/client-efs"; // ES Modules import
40
40
  * // const { EFSClient, CreateAccessPointCommand } = require("@aws-sdk/client-efs"); // CommonJS import
41
41
  * const client = new EFSClient(config);
42
+ * const input = { // CreateAccessPointRequest
43
+ * ClientToken: "STRING_VALUE", // required
44
+ * Tags: [ // Tags
45
+ * { // Tag
46
+ * Key: "STRING_VALUE", // required
47
+ * Value: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * FileSystemId: "STRING_VALUE", // required
51
+ * PosixUser: { // PosixUser
52
+ * Uid: Number("long"), // required
53
+ * Gid: Number("long"), // required
54
+ * SecondaryGids: [ // SecondaryGids
55
+ * Number("long"),
56
+ * ],
57
+ * },
58
+ * RootDirectory: { // RootDirectory
59
+ * Path: "STRING_VALUE",
60
+ * CreationInfo: { // CreationInfo
61
+ * OwnerUid: Number("long"), // required
62
+ * OwnerGid: Number("long"), // required
63
+ * Permissions: "STRING_VALUE", // required
64
+ * },
65
+ * },
66
+ * };
42
67
  * const command = new CreateAccessPointCommand(input);
43
68
  * const response = await client.send(command);
44
69
  * ```
@@ -74,6 +74,22 @@ export interface CreateFileSystemCommandOutput extends FileSystemDescription, __
74
74
  * import { EFSClient, CreateFileSystemCommand } from "@aws-sdk/client-efs"; // ES Modules import
75
75
  * // const { EFSClient, CreateFileSystemCommand } = require("@aws-sdk/client-efs"); // CommonJS import
76
76
  * const client = new EFSClient(config);
77
+ * const input = { // CreateFileSystemRequest
78
+ * CreationToken: "STRING_VALUE", // required
79
+ * PerformanceMode: "generalPurpose" || "maxIO",
80
+ * Encrypted: true || false,
81
+ * KmsKeyId: "STRING_VALUE",
82
+ * ThroughputMode: "bursting" || "provisioned" || "elastic",
83
+ * ProvisionedThroughputInMibps: Number("double"),
84
+ * AvailabilityZoneName: "STRING_VALUE",
85
+ * Backup: true || false,
86
+ * Tags: [ // Tags
87
+ * { // Tag
88
+ * Key: "STRING_VALUE", // required
89
+ * Value: "STRING_VALUE", // required
90
+ * },
91
+ * ],
92
+ * };
77
93
  * const command = new CreateFileSystemCommand(input);
78
94
  * const response = await client.send(command);
79
95
  * ```
@@ -165,6 +165,14 @@ export interface CreateMountTargetCommandOutput extends MountTargetDescription,
165
165
  * import { EFSClient, CreateMountTargetCommand } from "@aws-sdk/client-efs"; // ES Modules import
166
166
  * // const { EFSClient, CreateMountTargetCommand } = require("@aws-sdk/client-efs"); // CommonJS import
167
167
  * const client = new EFSClient(config);
168
+ * const input = { // CreateMountTargetRequest
169
+ * FileSystemId: "STRING_VALUE", // required
170
+ * SubnetId: "STRING_VALUE", // required
171
+ * IpAddress: "STRING_VALUE",
172
+ * SecurityGroups: [ // SecurityGroups
173
+ * "STRING_VALUE",
174
+ * ],
175
+ * };
168
176
  * const command = new CreateMountTargetCommand(input);
169
177
  * const response = await client.send(command);
170
178
  * ```
@@ -107,6 +107,16 @@ export interface CreateReplicationConfigurationCommandOutput extends Replication
107
107
  * import { EFSClient, CreateReplicationConfigurationCommand } from "@aws-sdk/client-efs"; // ES Modules import
108
108
  * // const { EFSClient, CreateReplicationConfigurationCommand } = require("@aws-sdk/client-efs"); // CommonJS import
109
109
  * const client = new EFSClient(config);
110
+ * const input = { // CreateReplicationConfigurationRequest
111
+ * SourceFileSystemId: "STRING_VALUE", // required
112
+ * Destinations: [ // DestinationsToCreate // required
113
+ * { // DestinationToCreate
114
+ * Region: "STRING_VALUE",
115
+ * AvailabilityZoneName: "STRING_VALUE",
116
+ * KmsKeyId: "STRING_VALUE",
117
+ * },
118
+ * ],
119
+ * };
110
120
  * const command = new CreateReplicationConfigurationCommand(input);
111
121
  * const response = await client.send(command);
112
122
  * ```
@@ -37,6 +37,15 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
37
37
  * import { EFSClient, CreateTagsCommand } from "@aws-sdk/client-efs"; // ES Modules import
38
38
  * // const { EFSClient, CreateTagsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
39
39
  * const client = new EFSClient(config);
40
+ * const input = { // CreateTagsRequest
41
+ * FileSystemId: "STRING_VALUE", // required
42
+ * Tags: [ // Tags // required
43
+ * { // Tag
44
+ * Key: "STRING_VALUE", // required
45
+ * Value: "STRING_VALUE", // required
46
+ * },
47
+ * ],
48
+ * };
40
49
  * const command = new CreateTagsCommand(input);
41
50
  * const response = await client.send(command);
42
51
  * ```
@@ -29,6 +29,9 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
29
29
  * import { EFSClient, DeleteAccessPointCommand } from "@aws-sdk/client-efs"; // ES Modules import
30
30
  * // const { EFSClient, DeleteAccessPointCommand } = require("@aws-sdk/client-efs"); // CommonJS import
31
31
  * const client = new EFSClient(config);
32
+ * const input = { // DeleteAccessPointRequest
33
+ * AccessPointId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteAccessPointCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -45,6 +45,9 @@ export interface DeleteFileSystemCommandOutput extends __MetadataBearer {
45
45
  * import { EFSClient, DeleteFileSystemCommand } from "@aws-sdk/client-efs"; // ES Modules import
46
46
  * // const { EFSClient, DeleteFileSystemCommand } = require("@aws-sdk/client-efs"); // CommonJS import
47
47
  * const client = new EFSClient(config);
48
+ * const input = { // DeleteFileSystemRequest
49
+ * FileSystemId: "STRING_VALUE", // required
50
+ * };
48
51
  * const command = new DeleteFileSystemCommand(input);
49
52
  * const response = await client.send(command);
50
53
  * ```
@@ -29,6 +29,9 @@ export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {
29
29
  * import { EFSClient, DeleteFileSystemPolicyCommand } from "@aws-sdk/client-efs"; // ES Modules import
30
30
  * // const { EFSClient, DeleteFileSystemPolicyCommand } = require("@aws-sdk/client-efs"); // CommonJS import
31
31
  * const client = new EFSClient(config);
32
+ * const input = { // DeleteFileSystemPolicyRequest
33
+ * FileSystemId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteFileSystemPolicyCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -56,6 +56,9 @@ export interface DeleteMountTargetCommandOutput extends __MetadataBearer {
56
56
  * import { EFSClient, DeleteMountTargetCommand } from "@aws-sdk/client-efs"; // ES Modules import
57
57
  * // const { EFSClient, DeleteMountTargetCommand } = require("@aws-sdk/client-efs"); // CommonJS import
58
58
  * const client = new EFSClient(config);
59
+ * const input = { // DeleteMountTargetRequest
60
+ * MountTargetId: "STRING_VALUE", // required
61
+ * };
59
62
  * const command = new DeleteMountTargetCommand(input);
60
63
  * const response = await client.send(command);
61
64
  * ```
@@ -31,6 +31,9 @@ export interface DeleteReplicationConfigurationCommandOutput extends __MetadataB
31
31
  * import { EFSClient, DeleteReplicationConfigurationCommand } from "@aws-sdk/client-efs"; // ES Modules import
32
32
  * // const { EFSClient, DeleteReplicationConfigurationCommand } = require("@aws-sdk/client-efs"); // CommonJS import
33
33
  * const client = new EFSClient(config);
34
+ * const input = { // DeleteReplicationConfigurationRequest
35
+ * SourceFileSystemId: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new DeleteReplicationConfigurationCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -37,6 +37,12 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {
37
37
  * import { EFSClient, DeleteTagsCommand } from "@aws-sdk/client-efs"; // ES Modules import
38
38
  * // const { EFSClient, DeleteTagsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
39
39
  * const client = new EFSClient(config);
40
+ * const input = { // DeleteTagsRequest
41
+ * FileSystemId: "STRING_VALUE", // required
42
+ * TagKeys: [ // TagKeys // required
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * };
40
46
  * const command = new DeleteTagsCommand(input);
41
47
  * const response = await client.send(command);
42
48
  * ```
@@ -29,6 +29,12 @@ export interface DescribeAccessPointsCommandOutput extends DescribeAccessPointsR
29
29
  * import { EFSClient, DescribeAccessPointsCommand } from "@aws-sdk/client-efs"; // ES Modules import
30
30
  * // const { EFSClient, DescribeAccessPointsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
31
31
  * const client = new EFSClient(config);
32
+ * const input = { // DescribeAccessPointsRequest
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * AccessPointId: "STRING_VALUE",
36
+ * FileSystemId: "STRING_VALUE",
37
+ * };
32
38
  * const command = new DescribeAccessPointsCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -27,6 +27,10 @@ export interface DescribeAccountPreferencesCommandOutput extends DescribeAccount
27
27
  * import { EFSClient, DescribeAccountPreferencesCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, DescribeAccountPreferencesCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // DescribeAccountPreferencesRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
30
34
  * const command = new DescribeAccountPreferencesCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ export interface DescribeBackupPolicyCommandOutput extends BackupPolicyDescripti
26
26
  * import { EFSClient, DescribeBackupPolicyCommand } from "@aws-sdk/client-efs"; // ES Modules import
27
27
  * // const { EFSClient, DescribeBackupPolicyCommand } = require("@aws-sdk/client-efs"); // CommonJS import
28
28
  * const client = new EFSClient(config);
29
+ * const input = { // DescribeBackupPolicyRequest
30
+ * FileSystemId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeBackupPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface DescribeFileSystemPolicyCommandOutput extends FileSystemPolicyD
27
27
  * import { EFSClient, DescribeFileSystemPolicyCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, DescribeFileSystemPolicyCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // DescribeFileSystemPolicyRequest
31
+ * FileSystemId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeFileSystemPolicyCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -45,6 +45,12 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
45
45
  * import { EFSClient, DescribeFileSystemsCommand } from "@aws-sdk/client-efs"; // ES Modules import
46
46
  * // const { EFSClient, DescribeFileSystemsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
47
47
  * const client = new EFSClient(config);
48
+ * const input = { // DescribeFileSystemsRequest
49
+ * MaxItems: Number("int"),
50
+ * Marker: "STRING_VALUE",
51
+ * CreationToken: "STRING_VALUE",
52
+ * FileSystemId: "STRING_VALUE",
53
+ * };
48
54
  * const command = new DescribeFileSystemsCommand(input);
49
55
  * const response = await client.send(command);
50
56
  * ```
@@ -34,6 +34,9 @@ export interface DescribeLifecycleConfigurationCommandOutput extends LifecycleCo
34
34
  * import { EFSClient, DescribeLifecycleConfigurationCommand } from "@aws-sdk/client-efs"; // ES Modules import
35
35
  * // const { EFSClient, DescribeLifecycleConfigurationCommand } = require("@aws-sdk/client-efs"); // CommonJS import
36
36
  * const client = new EFSClient(config);
37
+ * const input = { // DescribeLifecycleConfigurationRequest
38
+ * FileSystemId: "STRING_VALUE", // required
39
+ * };
37
40
  * const command = new DescribeLifecycleConfigurationCommand(input);
38
41
  * const response = await client.send(command);
39
42
  * ```
@@ -41,6 +41,9 @@ export interface DescribeMountTargetSecurityGroupsCommandOutput extends Describe
41
41
  * import { EFSClient, DescribeMountTargetSecurityGroupsCommand } from "@aws-sdk/client-efs"; // ES Modules import
42
42
  * // const { EFSClient, DescribeMountTargetSecurityGroupsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
43
43
  * const client = new EFSClient(config);
44
+ * const input = { // DescribeMountTargetSecurityGroupsRequest
45
+ * MountTargetId: "STRING_VALUE", // required
46
+ * };
44
47
  * const command = new DescribeMountTargetSecurityGroupsCommand(input);
45
48
  * const response = await client.send(command);
46
49
  * ```
@@ -32,6 +32,13 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR
32
32
  * import { EFSClient, DescribeMountTargetsCommand } from "@aws-sdk/client-efs"; // ES Modules import
33
33
  * // const { EFSClient, DescribeMountTargetsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
34
34
  * const client = new EFSClient(config);
35
+ * const input = { // DescribeMountTargetsRequest
36
+ * MaxItems: Number("int"),
37
+ * Marker: "STRING_VALUE",
38
+ * FileSystemId: "STRING_VALUE",
39
+ * MountTargetId: "STRING_VALUE",
40
+ * AccessPointId: "STRING_VALUE",
41
+ * };
35
42
  * const command = new DescribeMountTargetsCommand(input);
36
43
  * const response = await client.send(command);
37
44
  * ```
@@ -28,6 +28,11 @@ export interface DescribeReplicationConfigurationsCommandOutput extends Describe
28
28
  * import { EFSClient, DescribeReplicationConfigurationsCommand } from "@aws-sdk/client-efs"; // ES Modules import
29
29
  * // const { EFSClient, DescribeReplicationConfigurationsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
30
30
  * const client = new EFSClient(config);
31
+ * const input = { // DescribeReplicationConfigurationsRequest
32
+ * FileSystemId: "STRING_VALUE",
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
31
36
  * const command = new DescribeReplicationConfigurationsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -37,6 +37,11 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
37
37
  * import { EFSClient, DescribeTagsCommand } from "@aws-sdk/client-efs"; // ES Modules import
38
38
  * // const { EFSClient, DescribeTagsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
39
39
  * const client = new EFSClient(config);
40
+ * const input = { // DescribeTagsRequest
41
+ * MaxItems: Number("int"),
42
+ * Marker: "STRING_VALUE",
43
+ * FileSystemId: "STRING_VALUE", // required
44
+ * };
40
45
  * const command = new DescribeTagsCommand(input);
41
46
  * const response = await client.send(command);
42
47
  * ```
@@ -27,6 +27,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
27
  * import { EFSClient, ListTagsForResourceCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, ListTagsForResourceCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // ListTagsForResourceRequest
31
+ * ResourceId: "STRING_VALUE", // required
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
30
35
  * const command = new ListTagsForResourceCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -45,6 +45,12 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata
45
45
  * import { EFSClient, ModifyMountTargetSecurityGroupsCommand } from "@aws-sdk/client-efs"; // ES Modules import
46
46
  * // const { EFSClient, ModifyMountTargetSecurityGroupsCommand } = require("@aws-sdk/client-efs"); // CommonJS import
47
47
  * const client = new EFSClient(config);
48
+ * const input = { // ModifyMountTargetSecurityGroupsRequest
49
+ * MountTargetId: "STRING_VALUE", // required
50
+ * SecurityGroups: [ // SecurityGroups
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * };
48
54
  * const command = new ModifyMountTargetSecurityGroupsCommand(input);
49
55
  * const response = await client.send(command);
50
56
  * ```
@@ -36,6 +36,9 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference
36
36
  * import { EFSClient, PutAccountPreferencesCommand } from "@aws-sdk/client-efs"; // ES Modules import
37
37
  * // const { EFSClient, PutAccountPreferencesCommand } = require("@aws-sdk/client-efs"); // CommonJS import
38
38
  * const client = new EFSClient(config);
39
+ * const input = { // PutAccountPreferencesRequest
40
+ * ResourceIdType: "LONG_ID" || "SHORT_ID", // required
41
+ * };
39
42
  * const command = new PutAccountPreferencesCommand(input);
40
43
  * const response = await client.send(command);
41
44
  * ```
@@ -26,6 +26,12 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _
26
26
  * import { EFSClient, PutBackupPolicyCommand } from "@aws-sdk/client-efs"; // ES Modules import
27
27
  * // const { EFSClient, PutBackupPolicyCommand } = require("@aws-sdk/client-efs"); // CommonJS import
28
28
  * const client = new EFSClient(config);
29
+ * const input = { // PutBackupPolicyRequest
30
+ * FileSystemId: "STRING_VALUE", // required
31
+ * BackupPolicy: { // BackupPolicy
32
+ * Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING", // required
33
+ * },
34
+ * };
29
35
  * const command = new PutBackupPolicyCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -37,6 +37,11 @@ export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescri
37
37
  * import { EFSClient, PutFileSystemPolicyCommand } from "@aws-sdk/client-efs"; // ES Modules import
38
38
  * // const { EFSClient, PutFileSystemPolicyCommand } = require("@aws-sdk/client-efs"); // CommonJS import
39
39
  * const client = new EFSClient(config);
40
+ * const input = { // PutFileSystemPolicyRequest
41
+ * FileSystemId: "STRING_VALUE", // required
42
+ * Policy: "STRING_VALUE", // required
43
+ * BypassPolicyLockoutSafetyCheck: true || false,
44
+ * };
40
45
  * const command = new PutFileSystemPolicyCommand(input);
41
46
  * const response = await client.send(command);
42
47
  * ```
@@ -72,6 +72,15 @@ export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigu
72
72
  * import { EFSClient, PutLifecycleConfigurationCommand } from "@aws-sdk/client-efs"; // ES Modules import
73
73
  * // const { EFSClient, PutLifecycleConfigurationCommand } = require("@aws-sdk/client-efs"); // CommonJS import
74
74
  * const client = new EFSClient(config);
75
+ * const input = { // PutLifecycleConfigurationRequest
76
+ * FileSystemId: "STRING_VALUE", // required
77
+ * LifecyclePolicies: [ // LifecyclePolicies // required
78
+ * { // LifecyclePolicy
79
+ * TransitionToIA: "AFTER_7_DAYS" || "AFTER_14_DAYS" || "AFTER_30_DAYS" || "AFTER_60_DAYS" || "AFTER_90_DAYS" || "AFTER_1_DAY",
80
+ * TransitionToPrimaryStorageClass: "AFTER_1_ACCESS",
81
+ * },
82
+ * ],
83
+ * };
75
84
  * const command = new PutLifecycleConfigurationCommand(input);
76
85
  * const response = await client.send(command);
77
86
  * ```
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
27
27
  * import { EFSClient, TagResourceCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, TagResourceCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // TagResourceRequest
31
+ * ResourceId: "STRING_VALUE", // required
32
+ * Tags: [ // Tags // required
33
+ * { // Tag
34
+ * Key: "STRING_VALUE", // required
35
+ * Value: "STRING_VALUE", // required
36
+ * },
37
+ * ],
38
+ * };
30
39
  * const command = new TagResourceCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
27
27
  * import { EFSClient, UntagResourceCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, UntagResourceCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // UntagResourceRequest
31
+ * ResourceId: "STRING_VALUE", // required
32
+ * TagKeys: [ // TagKeys // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -27,6 +27,11 @@ export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __
27
27
  * import { EFSClient, UpdateFileSystemCommand } from "@aws-sdk/client-efs"; // ES Modules import
28
28
  * // const { EFSClient, UpdateFileSystemCommand } = require("@aws-sdk/client-efs"); // CommonJS import
29
29
  * const client = new EFSClient(config);
30
+ * const input = { // UpdateFileSystemRequest
31
+ * FileSystemId: "STRING_VALUE", // required
32
+ * ThroughputMode: "bursting" || "provisioned" || "elastic",
33
+ * ProvisionedThroughputInMibps: Number("double"),
34
+ * };
30
35
  * const command = new UpdateFileSystemCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-efs",
3
3
  "description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"