@aws-sdk/client-efs 3.47.2 → 3.51.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 (36) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/EFS.js +45 -0
  4. package/dist-cjs/commands/CreateReplicationConfigurationCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteReplicationConfigurationCommand.js +36 -0
  6. package/dist-cjs/commands/DescribeReplicationConfigurationsCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +3 -0
  8. package/dist-cjs/endpoints.js +9 -0
  9. package/dist-cjs/models/models_0.js +51 -2
  10. package/dist-cjs/protocols/Aws_restJson1.js +482 -2
  11. package/dist-es/EFS.js +45 -0
  12. package/dist-es/commands/CreateReplicationConfigurationCommand.js +39 -0
  13. package/dist-es/commands/DeleteReplicationConfigurationCommand.js +39 -0
  14. package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +39 -0
  15. package/dist-es/commands/index.js +3 -0
  16. package/dist-es/endpoints.js +9 -0
  17. package/dist-es/models/models_0.js +35 -0
  18. package/dist-es/protocols/Aws_restJson1.js +606 -78
  19. package/dist-types/EFS.d.ts +106 -3
  20. package/dist-types/EFSClient.d.ts +6 -3
  21. package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +110 -0
  22. package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +39 -0
  23. package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +36 -0
  24. package/dist-types/commands/PutAccountPreferencesCommand.d.ts +4 -2
  25. package/dist-types/commands/index.d.ts +3 -0
  26. package/dist-types/models/models_0.d.ts +538 -24
  27. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  28. package/dist-types/ts3.4/EFS.d.ts +15 -0
  29. package/dist-types/ts3.4/EFSClient.d.ts +5 -2
  30. package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +164 -7
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
  36. package/package.json +39 -33
@@ -3,11 +3,13 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "../commands/CreateAccessPointCommand";
4
4
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "../commands/CreateFileSystemCommand";
5
5
  import { CreateMountTargetCommandInput, CreateMountTargetCommandOutput } from "../commands/CreateMountTargetCommand";
6
+ import { CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput } from "../commands/CreateReplicationConfigurationCommand";
6
7
  import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/CreateTagsCommand";
7
8
  import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "../commands/DeleteAccessPointCommand";
8
9
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "../commands/DeleteFileSystemCommand";
9
10
  import { DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput } from "../commands/DeleteFileSystemPolicyCommand";
10
11
  import { DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput } from "../commands/DeleteMountTargetCommand";
12
+ import { DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput } from "../commands/DeleteReplicationConfigurationCommand";
11
13
  import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
12
14
  import { DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput } from "../commands/DescribeAccessPointsCommand";
13
15
  import { DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput } from "../commands/DescribeAccountPreferencesCommand";
@@ -17,6 +19,7 @@ import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } fro
17
19
  import { DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput } from "../commands/DescribeLifecycleConfigurationCommand";
18
20
  import { DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput } from "../commands/DescribeMountTargetsCommand";
19
21
  import { DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput } from "../commands/DescribeMountTargetSecurityGroupsCommand";
22
+ import { DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput } from "../commands/DescribeReplicationConfigurationsCommand";
20
23
  import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "../commands/DescribeTagsCommand";
21
24
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
22
25
  import { ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput } from "../commands/ModifyMountTargetSecurityGroupsCommand";
@@ -30,11 +33,13 @@ import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "../
30
33
  export declare const serializeAws_restJson1CreateAccessPointCommand: (input: CreateAccessPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
34
  export declare const serializeAws_restJson1CreateFileSystemCommand: (input: CreateFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
35
  export declare const serializeAws_restJson1CreateMountTargetCommand: (input: CreateMountTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1CreateReplicationConfigurationCommand: (input: CreateReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
37
  export declare const serializeAws_restJson1CreateTagsCommand: (input: CreateTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
38
  export declare const serializeAws_restJson1DeleteAccessPointCommand: (input: DeleteAccessPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
39
  export declare const serializeAws_restJson1DeleteFileSystemCommand: (input: DeleteFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
40
  export declare const serializeAws_restJson1DeleteFileSystemPolicyCommand: (input: DeleteFileSystemPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
41
  export declare const serializeAws_restJson1DeleteMountTargetCommand: (input: DeleteMountTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1DeleteReplicationConfigurationCommand: (input: DeleteReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
43
  export declare const serializeAws_restJson1DeleteTagsCommand: (input: DeleteTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
44
  export declare const serializeAws_restJson1DescribeAccessPointsCommand: (input: DescribeAccessPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
45
  export declare const serializeAws_restJson1DescribeAccountPreferencesCommand: (input: DescribeAccountPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -44,6 +49,7 @@ export declare const serializeAws_restJson1DescribeFileSystemsCommand: (input: D
44
49
  export declare const serializeAws_restJson1DescribeLifecycleConfigurationCommand: (input: DescribeLifecycleConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
50
  export declare const serializeAws_restJson1DescribeMountTargetsCommand: (input: DescribeMountTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
51
  export declare const serializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (input: DescribeMountTargetSecurityGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_restJson1DescribeReplicationConfigurationsCommand: (input: DescribeReplicationConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
53
  export declare const serializeAws_restJson1DescribeTagsCommand: (input: DescribeTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
54
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
55
  export declare const serializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (input: ModifyMountTargetSecurityGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -57,11 +63,13 @@ export declare const serializeAws_restJson1UpdateFileSystemCommand: (input: Upda
57
63
  export declare const deserializeAws_restJson1CreateAccessPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAccessPointCommandOutput>;
58
64
  export declare const deserializeAws_restJson1CreateFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFileSystemCommandOutput>;
59
65
  export declare const deserializeAws_restJson1CreateMountTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMountTargetCommandOutput>;
66
+ export declare const deserializeAws_restJson1CreateReplicationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReplicationConfigurationCommandOutput>;
60
67
  export declare const deserializeAws_restJson1CreateTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTagsCommandOutput>;
61
68
  export declare const deserializeAws_restJson1DeleteAccessPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessPointCommandOutput>;
62
69
  export declare const deserializeAws_restJson1DeleteFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFileSystemCommandOutput>;
63
70
  export declare const deserializeAws_restJson1DeleteFileSystemPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFileSystemPolicyCommandOutput>;
64
71
  export declare const deserializeAws_restJson1DeleteMountTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMountTargetCommandOutput>;
72
+ export declare const deserializeAws_restJson1DeleteReplicationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReplicationConfigurationCommandOutput>;
65
73
  export declare const deserializeAws_restJson1DeleteTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTagsCommandOutput>;
66
74
  export declare const deserializeAws_restJson1DescribeAccessPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccessPointsCommandOutput>;
67
75
  export declare const deserializeAws_restJson1DescribeAccountPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountPreferencesCommandOutput>;
@@ -71,6 +79,7 @@ export declare const deserializeAws_restJson1DescribeFileSystemsCommand: (output
71
79
  export declare const deserializeAws_restJson1DescribeLifecycleConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLifecycleConfigurationCommandOutput>;
72
80
  export declare const deserializeAws_restJson1DescribeMountTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMountTargetsCommandOutput>;
73
81
  export declare const deserializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMountTargetSecurityGroupsCommandOutput>;
82
+ export declare const deserializeAws_restJson1DescribeReplicationConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReplicationConfigurationsCommandOutput>;
74
83
  export declare const deserializeAws_restJson1DescribeTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTagsCommandOutput>;
75
84
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
76
85
  export declare const deserializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyMountTargetSecurityGroupsCommandOutput>;
@@ -2,11 +2,13 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
2
  import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
3
3
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "./commands/CreateFileSystemCommand";
4
4
  import { CreateMountTargetCommandInput, CreateMountTargetCommandOutput } from "./commands/CreateMountTargetCommand";
5
+ import { CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput } from "./commands/CreateReplicationConfigurationCommand";
5
6
  import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
6
7
  import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
7
8
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "./commands/DeleteFileSystemCommand";
8
9
  import { DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput } from "./commands/DeleteFileSystemPolicyCommand";
9
10
  import { DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput } from "./commands/DeleteMountTargetCommand";
11
+ import { DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput } from "./commands/DeleteReplicationConfigurationCommand";
10
12
  import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
11
13
  import { DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput } from "./commands/DescribeAccessPointsCommand";
12
14
  import { DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput } from "./commands/DescribeAccountPreferencesCommand";
@@ -16,6 +18,7 @@ import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } fro
16
18
  import { DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput } from "./commands/DescribeLifecycleConfigurationCommand";
17
19
  import { DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput } from "./commands/DescribeMountTargetsCommand";
18
20
  import { DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput } from "./commands/DescribeMountTargetSecurityGroupsCommand";
21
+ import { DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput } from "./commands/DescribeReplicationConfigurationsCommand";
19
22
  import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
20
23
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
21
24
  import { ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput } from "./commands/ModifyMountTargetSecurityGroupsCommand";
@@ -42,6 +45,10 @@ export declare class EFS extends EFSClient {
42
45
  createMountTarget(args: CreateMountTargetCommandInput, cb: (err: any, data?: CreateMountTargetCommandOutput) => void): void;
43
46
  createMountTarget(args: CreateMountTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMountTargetCommandOutput) => void): void;
44
47
 
48
+ createReplicationConfiguration(args: CreateReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationConfigurationCommandOutput>;
49
+ createReplicationConfiguration(args: CreateReplicationConfigurationCommandInput, cb: (err: any, data?: CreateReplicationConfigurationCommandOutput) => void): void;
50
+ createReplicationConfiguration(args: CreateReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationConfigurationCommandOutput) => void): void;
51
+
45
52
  createTags(args: CreateTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateTagsCommandOutput>;
46
53
  createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
47
54
  createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
@@ -62,6 +69,10 @@ export declare class EFS extends EFSClient {
62
69
  deleteMountTarget(args: DeleteMountTargetCommandInput, cb: (err: any, data?: DeleteMountTargetCommandOutput) => void): void;
63
70
  deleteMountTarget(args: DeleteMountTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMountTargetCommandOutput) => void): void;
64
71
 
72
+ deleteReplicationConfiguration(args: DeleteReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationConfigurationCommandOutput>;
73
+ deleteReplicationConfiguration(args: DeleteReplicationConfigurationCommandInput, cb: (err: any, data?: DeleteReplicationConfigurationCommandOutput) => void): void;
74
+ deleteReplicationConfiguration(args: DeleteReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationConfigurationCommandOutput) => void): void;
75
+
65
76
  deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
66
77
  deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
67
78
  deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
@@ -98,6 +109,10 @@ export declare class EFS extends EFSClient {
98
109
  describeMountTargetSecurityGroups(args: DescribeMountTargetSecurityGroupsCommandInput, cb: (err: any, data?: DescribeMountTargetSecurityGroupsCommandOutput) => void): void;
99
110
  describeMountTargetSecurityGroups(args: DescribeMountTargetSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMountTargetSecurityGroupsCommandOutput) => void): void;
100
111
 
112
+ describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationConfigurationsCommandOutput>;
113
+ describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, cb: (err: any, data?: DescribeReplicationConfigurationsCommandOutput) => void): void;
114
+ describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationConfigurationsCommandOutput) => void): void;
115
+
101
116
  describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
102
117
  describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
103
118
  describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
@@ -9,11 +9,13 @@ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encode
9
9
  import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
10
10
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "./commands/CreateFileSystemCommand";
11
11
  import { CreateMountTargetCommandInput, CreateMountTargetCommandOutput } from "./commands/CreateMountTargetCommand";
12
+ import { CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput } from "./commands/CreateReplicationConfigurationCommand";
12
13
  import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
13
14
  import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
14
15
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "./commands/DeleteFileSystemCommand";
15
16
  import { DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput } from "./commands/DeleteFileSystemPolicyCommand";
16
17
  import { DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput } from "./commands/DeleteMountTargetCommand";
18
+ import { DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput } from "./commands/DeleteReplicationConfigurationCommand";
17
19
  import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
18
20
  import { DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput } from "./commands/DescribeAccessPointsCommand";
19
21
  import { DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput } from "./commands/DescribeAccountPreferencesCommand";
@@ -23,6 +25,7 @@ import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } fro
23
25
  import { DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput } from "./commands/DescribeLifecycleConfigurationCommand";
24
26
  import { DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput } from "./commands/DescribeMountTargetsCommand";
25
27
  import { DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput } from "./commands/DescribeMountTargetSecurityGroupsCommand";
28
+ import { DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput } from "./commands/DescribeReplicationConfigurationsCommand";
26
29
  import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
27
30
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
28
31
  import { ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput } from "./commands/ModifyMountTargetSecurityGroupsCommand";
@@ -33,8 +36,8 @@ import { PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommand
33
36
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
34
37
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
35
38
  import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "./commands/UpdateFileSystemCommand";
36
- export declare type ServiceInputTypes = CreateAccessPointCommandInput | CreateFileSystemCommandInput | CreateMountTargetCommandInput | CreateTagsCommandInput | DeleteAccessPointCommandInput | DeleteFileSystemCommandInput | DeleteFileSystemPolicyCommandInput | DeleteMountTargetCommandInput | DeleteTagsCommandInput | DescribeAccessPointsCommandInput | DescribeAccountPreferencesCommandInput | DescribeBackupPolicyCommandInput | DescribeFileSystemPolicyCommandInput | DescribeFileSystemsCommandInput | DescribeLifecycleConfigurationCommandInput | DescribeMountTargetSecurityGroupsCommandInput | DescribeMountTargetsCommandInput | DescribeTagsCommandInput | ListTagsForResourceCommandInput | ModifyMountTargetSecurityGroupsCommandInput | PutAccountPreferencesCommandInput | PutBackupPolicyCommandInput | PutFileSystemPolicyCommandInput | PutLifecycleConfigurationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFileSystemCommandInput;
37
- export declare type ServiceOutputTypes = CreateAccessPointCommandOutput | CreateFileSystemCommandOutput | CreateMountTargetCommandOutput | CreateTagsCommandOutput | DeleteAccessPointCommandOutput | DeleteFileSystemCommandOutput | DeleteFileSystemPolicyCommandOutput | DeleteMountTargetCommandOutput | DeleteTagsCommandOutput | DescribeAccessPointsCommandOutput | DescribeAccountPreferencesCommandOutput | DescribeBackupPolicyCommandOutput | DescribeFileSystemPolicyCommandOutput | DescribeFileSystemsCommandOutput | DescribeLifecycleConfigurationCommandOutput | DescribeMountTargetSecurityGroupsCommandOutput | DescribeMountTargetsCommandOutput | DescribeTagsCommandOutput | ListTagsForResourceCommandOutput | ModifyMountTargetSecurityGroupsCommandOutput | PutAccountPreferencesCommandOutput | PutBackupPolicyCommandOutput | PutFileSystemPolicyCommandOutput | PutLifecycleConfigurationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFileSystemCommandOutput;
39
+ export declare type ServiceInputTypes = CreateAccessPointCommandInput | CreateFileSystemCommandInput | CreateMountTargetCommandInput | CreateReplicationConfigurationCommandInput | CreateTagsCommandInput | DeleteAccessPointCommandInput | DeleteFileSystemCommandInput | DeleteFileSystemPolicyCommandInput | DeleteMountTargetCommandInput | DeleteReplicationConfigurationCommandInput | DeleteTagsCommandInput | DescribeAccessPointsCommandInput | DescribeAccountPreferencesCommandInput | DescribeBackupPolicyCommandInput | DescribeFileSystemPolicyCommandInput | DescribeFileSystemsCommandInput | DescribeLifecycleConfigurationCommandInput | DescribeMountTargetSecurityGroupsCommandInput | DescribeMountTargetsCommandInput | DescribeReplicationConfigurationsCommandInput | DescribeTagsCommandInput | ListTagsForResourceCommandInput | ModifyMountTargetSecurityGroupsCommandInput | PutAccountPreferencesCommandInput | PutBackupPolicyCommandInput | PutFileSystemPolicyCommandInput | PutLifecycleConfigurationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFileSystemCommandInput;
40
+ export declare type ServiceOutputTypes = CreateAccessPointCommandOutput | CreateFileSystemCommandOutput | CreateMountTargetCommandOutput | CreateReplicationConfigurationCommandOutput | CreateTagsCommandOutput | DeleteAccessPointCommandOutput | DeleteFileSystemCommandOutput | DeleteFileSystemPolicyCommandOutput | DeleteMountTargetCommandOutput | DeleteReplicationConfigurationCommandOutput | DeleteTagsCommandOutput | DescribeAccessPointsCommandOutput | DescribeAccountPreferencesCommandOutput | DescribeBackupPolicyCommandOutput | DescribeFileSystemPolicyCommandOutput | DescribeFileSystemsCommandOutput | DescribeLifecycleConfigurationCommandOutput | DescribeMountTargetSecurityGroupsCommandOutput | DescribeMountTargetsCommandOutput | DescribeReplicationConfigurationsCommandOutput | DescribeTagsCommandOutput | ListTagsForResourceCommandOutput | ModifyMountTargetSecurityGroupsCommandOutput | PutAccountPreferencesCommandOutput | PutBackupPolicyCommandOutput | PutFileSystemPolicyCommandOutput | PutLifecycleConfigurationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFileSystemCommandOutput;
38
41
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
39
42
 
40
43
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
+ import { CreateReplicationConfigurationRequest, ReplicationConfigurationDescription } from "../models/models_0";
5
+ export interface CreateReplicationConfigurationCommandInput extends CreateReplicationConfigurationRequest {
6
+ }
7
+ export interface CreateReplicationConfigurationCommandOutput extends ReplicationConfigurationDescription, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateReplicationConfigurationCommand extends $Command<CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput, EFSClientResolvedConfig> {
11
+ readonly input: CreateReplicationConfigurationCommandInput;
12
+ constructor(input: CreateReplicationConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
+ import { DeleteReplicationConfigurationRequest } from "../models/models_0";
5
+ export interface DeleteReplicationConfigurationCommandInput extends DeleteReplicationConfigurationRequest {
6
+ }
7
+ export interface DeleteReplicationConfigurationCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteReplicationConfigurationCommand extends $Command<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput, EFSClientResolvedConfig> {
11
+ readonly input: DeleteReplicationConfigurationCommandInput;
12
+ constructor(input: DeleteReplicationConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
+ import { DescribeReplicationConfigurationsRequest, DescribeReplicationConfigurationsResponse } from "../models/models_0";
5
+ export interface DescribeReplicationConfigurationsCommandInput extends DescribeReplicationConfigurationsRequest {
6
+ }
7
+ export interface DescribeReplicationConfigurationsCommandOutput extends DescribeReplicationConfigurationsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeReplicationConfigurationsCommand extends $Command<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig> {
11
+ readonly input: DescribeReplicationConfigurationsCommandInput;
12
+ constructor(input: DescribeReplicationConfigurationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -1,11 +1,13 @@
1
1
  export * from "./CreateAccessPointCommand";
2
2
  export * from "./CreateFileSystemCommand";
3
3
  export * from "./CreateMountTargetCommand";
4
+ export * from "./CreateReplicationConfigurationCommand";
4
5
  export * from "./CreateTagsCommand";
5
6
  export * from "./DeleteAccessPointCommand";
6
7
  export * from "./DeleteFileSystemCommand";
7
8
  export * from "./DeleteFileSystemPolicyCommand";
8
9
  export * from "./DeleteMountTargetCommand";
10
+ export * from "./DeleteReplicationConfigurationCommand";
9
11
  export * from "./DeleteTagsCommand";
10
12
  export * from "./DescribeAccessPointsCommand";
11
13
  export * from "./DescribeAccountPreferencesCommand";
@@ -15,6 +17,7 @@ export * from "./DescribeFileSystemsCommand";
15
17
  export * from "./DescribeLifecycleConfigurationCommand";
16
18
  export * from "./DescribeMountTargetSecurityGroupsCommand";
17
19
  export * from "./DescribeMountTargetsCommand";
20
+ export * from "./DescribeReplicationConfigurationsCommand";
18
21
  export * from "./DescribeTagsCommand";
19
22
  export * from "./ListTagsForResourceCommand";
20
23
  export * from "./ModifyMountTargetSecurityGroupsCommand";
@@ -3,7 +3,9 @@ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException
3
3
  export interface AccessPointAlreadyExists extends __SmithyException, $MetadataBearer {
4
4
  name: "AccessPointAlreadyExists";
5
5
  $fault: "client";
6
+
6
7
  ErrorCode: string | undefined;
8
+
7
9
  Message?: string;
8
10
  AccessPointId: string | undefined;
9
11
  }
@@ -94,21 +96,27 @@ export declare namespace AccessPointDescription {
94
96
  export interface AccessPointLimitExceeded extends __SmithyException, $MetadataBearer {
95
97
  name: "AccessPointLimitExceeded";
96
98
  $fault: "client";
99
+
97
100
  ErrorCode: string | undefined;
101
+
98
102
  Message?: string;
99
103
  }
100
104
 
101
105
  export interface AccessPointNotFound extends __SmithyException, $MetadataBearer {
102
106
  name: "AccessPointNotFound";
103
107
  $fault: "client";
108
+
104
109
  ErrorCode: string | undefined;
110
+
105
111
  Message?: string;
106
112
  }
107
113
 
108
114
  export interface AvailabilityZonesMismatch extends __SmithyException, $MetadataBearer {
109
115
  name: "AvailabilityZonesMismatch";
110
116
  $fault: "client";
117
+
111
118
  ErrorCode?: string;
119
+
112
120
  Message?: string;
113
121
  }
114
122
  export declare enum Status {
@@ -138,7 +146,9 @@ export declare namespace BackupPolicyDescription {
138
146
  export interface BadRequest extends __SmithyException, $MetadataBearer {
139
147
  name: "BadRequest";
140
148
  $fault: "client";
149
+
141
150
  ErrorCode: string | undefined;
151
+
142
152
  Message?: string;
143
153
  }
144
154
  export interface CreateAccessPointRequest {
@@ -161,21 +171,27 @@ export declare namespace CreateAccessPointRequest {
161
171
  export interface FileSystemNotFound extends __SmithyException, $MetadataBearer {
162
172
  name: "FileSystemNotFound";
163
173
  $fault: "client";
174
+
164
175
  ErrorCode: string | undefined;
176
+
165
177
  Message?: string;
166
178
  }
167
179
 
168
180
  export interface IncorrectFileSystemLifeCycleState extends __SmithyException, $MetadataBearer {
169
181
  name: "IncorrectFileSystemLifeCycleState";
170
182
  $fault: "client";
183
+
171
184
  ErrorCode: string | undefined;
185
+
172
186
  Message?: string;
173
187
  }
174
188
 
175
189
  export interface InternalServerError extends __SmithyException, $MetadataBearer {
176
190
  name: "InternalServerError";
177
191
  $fault: "server";
192
+
178
193
  ErrorCode: string | undefined;
194
+
179
195
  Message?: string;
180
196
  }
181
197
  export declare enum PerformanceMode {
@@ -214,7 +230,9 @@ export declare namespace CreateFileSystemRequest {
214
230
  export interface FileSystemAlreadyExists extends __SmithyException, $MetadataBearer {
215
231
  name: "FileSystemAlreadyExists";
216
232
  $fault: "client";
233
+
217
234
  ErrorCode: string | undefined;
235
+
218
236
  Message?: string;
219
237
  FileSystemId: string | undefined;
220
238
  }
@@ -278,28 +296,36 @@ export declare namespace FileSystemDescription {
278
296
  export interface FileSystemLimitExceeded extends __SmithyException, $MetadataBearer {
279
297
  name: "FileSystemLimitExceeded";
280
298
  $fault: "client";
299
+
281
300
  ErrorCode: string | undefined;
301
+
282
302
  Message?: string;
283
303
  }
284
304
 
285
305
  export interface InsufficientThroughputCapacity extends __SmithyException, $MetadataBearer {
286
306
  name: "InsufficientThroughputCapacity";
287
307
  $fault: "server";
308
+
288
309
  ErrorCode: string | undefined;
310
+
289
311
  Message?: string;
290
312
  }
291
313
 
292
314
  export interface ThroughputLimitExceeded extends __SmithyException, $MetadataBearer {
293
315
  name: "ThroughputLimitExceeded";
294
316
  $fault: "client";
317
+
295
318
  ErrorCode: string | undefined;
319
+
296
320
  Message?: string;
297
321
  }
298
322
 
299
323
  export interface UnsupportedAvailabilityZone extends __SmithyException, $MetadataBearer {
300
324
  name: "UnsupportedAvailabilityZone";
301
325
  $fault: "client";
326
+
302
327
  ErrorCode: string | undefined;
328
+
303
329
  Message?: string;
304
330
  }
305
331
 
@@ -321,14 +347,18 @@ export declare namespace CreateMountTargetRequest {
321
347
  export interface IpAddressInUse extends __SmithyException, $MetadataBearer {
322
348
  name: "IpAddressInUse";
323
349
  $fault: "client";
350
+
324
351
  ErrorCode: string | undefined;
352
+
325
353
  Message?: string;
326
354
  }
327
355
 
328
356
  export interface MountTargetConflict extends __SmithyException, $MetadataBearer {
329
357
  name: "MountTargetConflict";
330
358
  $fault: "client";
359
+
331
360
  ErrorCode: string | undefined;
361
+
332
362
  Message?: string;
333
363
  }
334
364
 
@@ -362,35 +392,125 @@ export declare namespace MountTargetDescription {
362
392
  export interface NetworkInterfaceLimitExceeded extends __SmithyException, $MetadataBearer {
363
393
  name: "NetworkInterfaceLimitExceeded";
364
394
  $fault: "client";
395
+
365
396
  ErrorCode: string | undefined;
397
+
366
398
  Message?: string;
367
399
  }
368
400
 
369
401
  export interface NoFreeAddressesInSubnet extends __SmithyException, $MetadataBearer {
370
402
  name: "NoFreeAddressesInSubnet";
371
403
  $fault: "client";
404
+
372
405
  ErrorCode: string | undefined;
406
+
373
407
  Message?: string;
374
408
  }
375
409
 
376
410
  export interface SecurityGroupLimitExceeded extends __SmithyException, $MetadataBearer {
377
411
  name: "SecurityGroupLimitExceeded";
378
412
  $fault: "client";
413
+
379
414
  ErrorCode: string | undefined;
415
+
380
416
  Message?: string;
381
417
  }
382
418
 
383
419
  export interface SecurityGroupNotFound extends __SmithyException, $MetadataBearer {
384
420
  name: "SecurityGroupNotFound";
385
421
  $fault: "client";
422
+
386
423
  ErrorCode: string | undefined;
424
+
387
425
  Message?: string;
388
426
  }
389
427
 
390
428
  export interface SubnetNotFound extends __SmithyException, $MetadataBearer {
391
429
  name: "SubnetNotFound";
392
430
  $fault: "client";
431
+
393
432
  ErrorCode: string | undefined;
433
+
434
+ Message?: string;
435
+ }
436
+
437
+ export interface DestinationToCreate {
438
+
439
+ Region?: string;
440
+
441
+ AvailabilityZoneName?: string;
442
+
443
+ KmsKeyId?: string;
444
+ }
445
+ export declare namespace DestinationToCreate {
446
+
447
+ const filterSensitiveLog: (obj: DestinationToCreate) => any;
448
+ }
449
+ export interface CreateReplicationConfigurationRequest {
450
+
451
+ SourceFileSystemId: string | undefined;
452
+
453
+ Destinations: DestinationToCreate[] | undefined;
454
+ }
455
+ export declare namespace CreateReplicationConfigurationRequest {
456
+
457
+ const filterSensitiveLog: (obj: CreateReplicationConfigurationRequest) => any;
458
+ }
459
+ export declare enum ReplicationStatus {
460
+ DELETING = "DELETING",
461
+ ENABLED = "ENABLED",
462
+ ENABLING = "ENABLING",
463
+ ERROR = "ERROR"
464
+ }
465
+
466
+ export interface Destination {
467
+
468
+ Status: ReplicationStatus | string | undefined;
469
+
470
+ FileSystemId: string | undefined;
471
+
472
+ Region: string | undefined;
473
+
474
+ LastReplicatedTimestamp?: Date;
475
+ }
476
+ export declare namespace Destination {
477
+
478
+ const filterSensitiveLog: (obj: Destination) => any;
479
+ }
480
+ export interface ReplicationConfigurationDescription {
481
+
482
+ SourceFileSystemId: string | undefined;
483
+
484
+ SourceFileSystemRegion: string | undefined;
485
+
486
+ SourceFileSystemArn: string | undefined;
487
+
488
+ OriginalSourceFileSystemArn: string | undefined;
489
+
490
+ CreationTime: Date | undefined;
491
+
492
+ Destinations: Destination[] | undefined;
493
+ }
494
+ export declare namespace ReplicationConfigurationDescription {
495
+
496
+ const filterSensitiveLog: (obj: ReplicationConfigurationDescription) => any;
497
+ }
498
+
499
+ export interface ReplicationNotFound extends __SmithyException, $MetadataBearer {
500
+ name: "ReplicationNotFound";
501
+ $fault: "client";
502
+
503
+ ErrorCode?: string;
504
+
505
+ Message?: string;
506
+ }
507
+
508
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
509
+ name: "ValidationException";
510
+ $fault: "client";
511
+
512
+ ErrorCode: string | undefined;
513
+
394
514
  Message?: string;
395
515
  }
396
516
 
@@ -425,7 +545,9 @@ export declare namespace DeleteFileSystemRequest {
425
545
  export interface FileSystemInUse extends __SmithyException, $MetadataBearer {
426
546
  name: "FileSystemInUse";
427
547
  $fault: "client";
548
+
428
549
  ErrorCode: string | undefined;
550
+
429
551
  Message?: string;
430
552
  }
431
553
  export interface DeleteFileSystemPolicyRequest {
@@ -449,16 +571,28 @@ export declare namespace DeleteMountTargetRequest {
449
571
  export interface DependencyTimeout extends __SmithyException, $MetadataBearer {
450
572
  name: "DependencyTimeout";
451
573
  $fault: "server";
574
+
452
575
  ErrorCode: string | undefined;
576
+
453
577
  Message?: string;
454
578
  }
455
579
 
456
580
  export interface MountTargetNotFound extends __SmithyException, $MetadataBearer {
457
581
  name: "MountTargetNotFound";
458
582
  $fault: "client";
583
+
459
584
  ErrorCode: string | undefined;
585
+
460
586
  Message?: string;
461
587
  }
588
+ export interface DeleteReplicationConfigurationRequest {
589
+
590
+ SourceFileSystemId: string | undefined;
591
+ }
592
+ export declare namespace DeleteReplicationConfigurationRequest {
593
+
594
+ const filterSensitiveLog: (obj: DeleteReplicationConfigurationRequest) => any;
595
+ }
462
596
 
463
597
  export interface DeleteTagsRequest {
464
598
 
@@ -545,14 +679,9 @@ export declare namespace DescribeBackupPolicyRequest {
545
679
  export interface PolicyNotFound extends __SmithyException, $MetadataBearer {
546
680
  name: "PolicyNotFound";
547
681
  $fault: "client";
682
+
548
683
  ErrorCode?: string;
549
- Message?: string;
550
- }
551
-
552
- export interface ValidationException extends __SmithyException, $MetadataBearer {
553
- name: "ValidationException";
554
- $fault: "client";
555
- ErrorCode: string | undefined;
684
+
556
685
  Message?: string;
557
686
  }
558
687
  export interface DescribeFileSystemPolicyRequest {
@@ -688,9 +817,33 @@ export declare namespace DescribeMountTargetSecurityGroupsResponse {
688
817
  export interface IncorrectMountTargetState extends __SmithyException, $MetadataBearer {
689
818
  name: "IncorrectMountTargetState";
690
819
  $fault: "client";
820
+
691
821
  ErrorCode: string | undefined;
822
+
692
823
  Message?: string;
693
824
  }
825
+ export interface DescribeReplicationConfigurationsRequest {
826
+
827
+ FileSystemId?: string;
828
+
829
+ NextToken?: string;
830
+
831
+ MaxResults?: number;
832
+ }
833
+ export declare namespace DescribeReplicationConfigurationsRequest {
834
+
835
+ const filterSensitiveLog: (obj: DescribeReplicationConfigurationsRequest) => any;
836
+ }
837
+ export interface DescribeReplicationConfigurationsResponse {
838
+
839
+ Replications?: ReplicationConfigurationDescription[];
840
+
841
+ NextToken?: string;
842
+ }
843
+ export declare namespace DescribeReplicationConfigurationsResponse {
844
+
845
+ const filterSensitiveLog: (obj: DescribeReplicationConfigurationsResponse) => any;
846
+ }
694
847
 
695
848
  export interface DescribeTagsRequest {
696
849
 
@@ -721,7 +874,9 @@ export declare namespace DescribeTagsResponse {
721
874
  export interface InvalidPolicyException extends __SmithyException, $MetadataBearer {
722
875
  name: "InvalidPolicyException";
723
876
  $fault: "client";
877
+
724
878
  ErrorCode?: string;
879
+
725
880
  Message?: string;
726
881
  }
727
882
  export interface ListTagsForResourceRequest {
@@ -829,7 +984,9 @@ export declare namespace UntagResourceRequest {
829
984
  export interface TooManyRequests extends __SmithyException, $MetadataBearer {
830
985
  name: "TooManyRequests";
831
986
  $fault: "client";
987
+
832
988
  ErrorCode: string | undefined;
989
+
833
990
  Message?: string;
834
991
  }
835
992
  export interface UpdateFileSystemRequest {