@aws-sdk/client-efs 3.300.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.
- package/dist-types/commands/CreateAccessPointCommand.d.ts +7 -7
- package/dist-types/commands/CreateFileSystemCommand.d.ts +3 -3
- package/dist-types/commands/CreateMountTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/CreateTagsCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAccessPointsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMountTargetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -2
- package/dist-types/commands/PutAccountPreferencesCommand.d.ts +1 -1
- package/dist-types/commands/PutBackupPolicyCommand.d.ts +2 -2
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -39,25 +39,25 @@ 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 = {
|
|
42
|
+
* const input = { // CreateAccessPointRequest
|
|
43
43
|
* ClientToken: "STRING_VALUE", // required
|
|
44
|
-
* Tags: [
|
|
45
|
-
* {
|
|
44
|
+
* Tags: [ // Tags
|
|
45
|
+
* { // Tag
|
|
46
46
|
* Key: "STRING_VALUE", // required
|
|
47
47
|
* Value: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* FileSystemId: "STRING_VALUE", // required
|
|
51
|
-
* PosixUser: {
|
|
51
|
+
* PosixUser: { // PosixUser
|
|
52
52
|
* Uid: Number("long"), // required
|
|
53
53
|
* Gid: Number("long"), // required
|
|
54
|
-
* SecondaryGids: [
|
|
54
|
+
* SecondaryGids: [ // SecondaryGids
|
|
55
55
|
* Number("long"),
|
|
56
56
|
* ],
|
|
57
57
|
* },
|
|
58
|
-
* RootDirectory: {
|
|
58
|
+
* RootDirectory: { // RootDirectory
|
|
59
59
|
* Path: "STRING_VALUE",
|
|
60
|
-
* CreationInfo: {
|
|
60
|
+
* CreationInfo: { // CreationInfo
|
|
61
61
|
* OwnerUid: Number("long"), // required
|
|
62
62
|
* OwnerGid: Number("long"), // required
|
|
63
63
|
* Permissions: "STRING_VALUE", // required
|
|
@@ -74,7 +74,7 @@ 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 = {
|
|
77
|
+
* const input = { // CreateFileSystemRequest
|
|
78
78
|
* CreationToken: "STRING_VALUE", // required
|
|
79
79
|
* PerformanceMode: "generalPurpose" || "maxIO",
|
|
80
80
|
* Encrypted: true || false,
|
|
@@ -83,8 +83,8 @@ export interface CreateFileSystemCommandOutput extends FileSystemDescription, __
|
|
|
83
83
|
* ProvisionedThroughputInMibps: Number("double"),
|
|
84
84
|
* AvailabilityZoneName: "STRING_VALUE",
|
|
85
85
|
* Backup: true || false,
|
|
86
|
-
* Tags: [
|
|
87
|
-
* {
|
|
86
|
+
* Tags: [ // Tags
|
|
87
|
+
* { // Tag
|
|
88
88
|
* Key: "STRING_VALUE", // required
|
|
89
89
|
* Value: "STRING_VALUE", // required
|
|
90
90
|
* },
|
|
@@ -165,11 +165,11 @@ 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 = {
|
|
168
|
+
* const input = { // CreateMountTargetRequest
|
|
169
169
|
* FileSystemId: "STRING_VALUE", // required
|
|
170
170
|
* SubnetId: "STRING_VALUE", // required
|
|
171
171
|
* IpAddress: "STRING_VALUE",
|
|
172
|
-
* SecurityGroups: [
|
|
172
|
+
* SecurityGroups: [ // SecurityGroups
|
|
173
173
|
* "STRING_VALUE",
|
|
174
174
|
* ],
|
|
175
175
|
* };
|
|
@@ -107,10 +107,10 @@ 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 = {
|
|
110
|
+
* const input = { // CreateReplicationConfigurationRequest
|
|
111
111
|
* SourceFileSystemId: "STRING_VALUE", // required
|
|
112
|
-
* Destinations: [ // required
|
|
113
|
-
* {
|
|
112
|
+
* Destinations: [ // DestinationsToCreate // required
|
|
113
|
+
* { // DestinationToCreate
|
|
114
114
|
* Region: "STRING_VALUE",
|
|
115
115
|
* AvailabilityZoneName: "STRING_VALUE",
|
|
116
116
|
* KmsKeyId: "STRING_VALUE",
|
|
@@ -37,10 +37,10 @@ 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 = {
|
|
40
|
+
* const input = { // CreateTagsRequest
|
|
41
41
|
* FileSystemId: "STRING_VALUE", // required
|
|
42
|
-
* Tags: [ // required
|
|
43
|
-
* {
|
|
42
|
+
* Tags: [ // Tags // required
|
|
43
|
+
* { // Tag
|
|
44
44
|
* Key: "STRING_VALUE", // required
|
|
45
45
|
* Value: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DeleteAccessPointRequest
|
|
33
33
|
* AccessPointId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteAccessPointCommand(input);
|
|
@@ -45,7 +45,7 @@ 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 = {
|
|
48
|
+
* const input = { // DeleteFileSystemRequest
|
|
49
49
|
* FileSystemId: "STRING_VALUE", // required
|
|
50
50
|
* };
|
|
51
51
|
* const command = new DeleteFileSystemCommand(input);
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DeleteFileSystemPolicyRequest
|
|
33
33
|
* FileSystemId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteFileSystemPolicyCommand(input);
|
|
@@ -56,7 +56,7 @@ 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 = {
|
|
59
|
+
* const input = { // DeleteMountTargetRequest
|
|
60
60
|
* MountTargetId: "STRING_VALUE", // required
|
|
61
61
|
* };
|
|
62
62
|
* const command = new DeleteMountTargetCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // DeleteReplicationConfigurationRequest
|
|
35
35
|
* SourceFileSystemId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteReplicationConfigurationCommand(input);
|
|
@@ -37,9 +37,9 @@ 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 = {
|
|
40
|
+
* const input = { // DeleteTagsRequest
|
|
41
41
|
* FileSystemId: "STRING_VALUE", // required
|
|
42
|
-
* TagKeys: [ // required
|
|
42
|
+
* TagKeys: [ // TagKeys // required
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DescribeAccessPointsRequest
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* AccessPointId: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeAccountPreferencesRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeBackupPolicyRequest
|
|
30
30
|
* FileSystemId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeBackupPolicyCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeFileSystemPolicyRequest
|
|
31
31
|
* FileSystemId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeFileSystemPolicyCommand(input);
|
|
@@ -45,7 +45,7 @@ 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 = {
|
|
48
|
+
* const input = { // DescribeFileSystemsRequest
|
|
49
49
|
* MaxItems: Number("int"),
|
|
50
50
|
* Marker: "STRING_VALUE",
|
|
51
51
|
* CreationToken: "STRING_VALUE",
|
|
@@ -34,7 +34,7 @@ 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 = {
|
|
37
|
+
* const input = { // DescribeLifecycleConfigurationRequest
|
|
38
38
|
* FileSystemId: "STRING_VALUE", // required
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeLifecycleConfigurationCommand(input);
|
|
@@ -41,7 +41,7 @@ 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 = {
|
|
44
|
+
* const input = { // DescribeMountTargetSecurityGroupsRequest
|
|
45
45
|
* MountTargetId: "STRING_VALUE", // required
|
|
46
46
|
* };
|
|
47
47
|
* const command = new DescribeMountTargetSecurityGroupsCommand(input);
|
|
@@ -32,7 +32,7 @@ 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 = {
|
|
35
|
+
* const input = { // DescribeMountTargetsRequest
|
|
36
36
|
* MaxItems: Number("int"),
|
|
37
37
|
* Marker: "STRING_VALUE",
|
|
38
38
|
* FileSystemId: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DescribeReplicationConfigurationsRequest
|
|
32
32
|
* FileSystemId: "STRING_VALUE",
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -37,7 +37,7 @@ 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 = {
|
|
40
|
+
* const input = { // DescribeTagsRequest
|
|
41
41
|
* MaxItems: Number("int"),
|
|
42
42
|
* Marker: "STRING_VALUE",
|
|
43
43
|
* FileSystemId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* ResourceId: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -45,9 +45,9 @@ 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 = {
|
|
48
|
+
* const input = { // ModifyMountTargetSecurityGroupsRequest
|
|
49
49
|
* MountTargetId: "STRING_VALUE", // required
|
|
50
|
-
* SecurityGroups: [
|
|
50
|
+
* SecurityGroups: [ // SecurityGroups
|
|
51
51
|
* "STRING_VALUE",
|
|
52
52
|
* ],
|
|
53
53
|
* };
|
|
@@ -36,7 +36,7 @@ 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 = {
|
|
39
|
+
* const input = { // PutAccountPreferencesRequest
|
|
40
40
|
* ResourceIdType: "LONG_ID" || "SHORT_ID", // required
|
|
41
41
|
* };
|
|
42
42
|
* const command = new PutAccountPreferencesCommand(input);
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // PutBackupPolicyRequest
|
|
30
30
|
* FileSystemId: "STRING_VALUE", // required
|
|
31
|
-
* BackupPolicy: {
|
|
31
|
+
* BackupPolicy: { // BackupPolicy
|
|
32
32
|
* Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING", // required
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -37,7 +37,7 @@ 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 = {
|
|
40
|
+
* const input = { // PutFileSystemPolicyRequest
|
|
41
41
|
* FileSystemId: "STRING_VALUE", // required
|
|
42
42
|
* Policy: "STRING_VALUE", // required
|
|
43
43
|
* BypassPolicyLockoutSafetyCheck: true || false,
|
|
@@ -72,10 +72,10 @@ 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 = {
|
|
75
|
+
* const input = { // PutLifecycleConfigurationRequest
|
|
76
76
|
* FileSystemId: "STRING_VALUE", // required
|
|
77
|
-
* LifecyclePolicies: [ // required
|
|
78
|
-
* {
|
|
77
|
+
* LifecyclePolicies: [ // LifecyclePolicies // required
|
|
78
|
+
* { // LifecyclePolicy
|
|
79
79
|
* TransitionToIA: "AFTER_7_DAYS" || "AFTER_14_DAYS" || "AFTER_30_DAYS" || "AFTER_60_DAYS" || "AFTER_90_DAYS" || "AFTER_1_DAY",
|
|
80
80
|
* TransitionToPrimaryStorageClass: "AFTER_1_ACCESS",
|
|
81
81
|
* },
|
|
@@ -27,10 +27,10 @@ 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 = {
|
|
30
|
+
* const input = { // TagResourceRequest
|
|
31
31
|
* ResourceId: "STRING_VALUE", // required
|
|
32
|
-
* Tags: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Tags: [ // Tags // required
|
|
33
|
+
* { // Tag
|
|
34
34
|
* Key: "STRING_VALUE", // required
|
|
35
35
|
* Value: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
@@ -27,9 +27,9 @@ 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 = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* ResourceId: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // TagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // UpdateFileSystemRequest
|
|
31
31
|
* FileSystemId: "STRING_VALUE", // required
|
|
32
32
|
* ThroughputMode: "bursting" || "provisioned" || "elastic",
|
|
33
33
|
* ProvisionedThroughputInMibps: Number("double"),
|
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.
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|