@aws-sdk/client-efs 3.48.0 → 3.49.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 +11 -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
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 01/28/2022 ([#3263](https://github.com/aws/aws-sdk-js-v3/issues/3263)) ([c207cf4](https://github.com/aws/aws-sdk-js-v3/commit/c207cf4a70ba9ef14dc5b94da7883b0889d64918))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-efs
package/README.md CHANGED
@@ -10,7 +10,7 @@ AWS SDK for JavaScript EFS Client for Node.js, Browser and React Native.
10
10
  <fullname>Amazon Elastic File System</fullname>
11
11
 
12
12
  <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use
13
- with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic,
13
+ with Amazon EC2 Linux and Mac instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic,
14
14
  growing and shrinking automatically as you add and remove files, so your applications have the
15
15
  storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>
16
16
 
package/dist-cjs/EFS.js CHANGED
@@ -4,11 +4,13 @@ exports.EFS = void 0;
4
4
  const CreateAccessPointCommand_1 = require("./commands/CreateAccessPointCommand");
5
5
  const CreateFileSystemCommand_1 = require("./commands/CreateFileSystemCommand");
6
6
  const CreateMountTargetCommand_1 = require("./commands/CreateMountTargetCommand");
7
+ const CreateReplicationConfigurationCommand_1 = require("./commands/CreateReplicationConfigurationCommand");
7
8
  const CreateTagsCommand_1 = require("./commands/CreateTagsCommand");
8
9
  const DeleteAccessPointCommand_1 = require("./commands/DeleteAccessPointCommand");
9
10
  const DeleteFileSystemCommand_1 = require("./commands/DeleteFileSystemCommand");
10
11
  const DeleteFileSystemPolicyCommand_1 = require("./commands/DeleteFileSystemPolicyCommand");
11
12
  const DeleteMountTargetCommand_1 = require("./commands/DeleteMountTargetCommand");
13
+ const DeleteReplicationConfigurationCommand_1 = require("./commands/DeleteReplicationConfigurationCommand");
12
14
  const DeleteTagsCommand_1 = require("./commands/DeleteTagsCommand");
13
15
  const DescribeAccessPointsCommand_1 = require("./commands/DescribeAccessPointsCommand");
14
16
  const DescribeAccountPreferencesCommand_1 = require("./commands/DescribeAccountPreferencesCommand");
@@ -18,6 +20,7 @@ const DescribeFileSystemsCommand_1 = require("./commands/DescribeFileSystemsComm
18
20
  const DescribeLifecycleConfigurationCommand_1 = require("./commands/DescribeLifecycleConfigurationCommand");
19
21
  const DescribeMountTargetsCommand_1 = require("./commands/DescribeMountTargetsCommand");
20
22
  const DescribeMountTargetSecurityGroupsCommand_1 = require("./commands/DescribeMountTargetSecurityGroupsCommand");
23
+ const DescribeReplicationConfigurationsCommand_1 = require("./commands/DescribeReplicationConfigurationsCommand");
21
24
  const DescribeTagsCommand_1 = require("./commands/DescribeTagsCommand");
22
25
  const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
23
26
  const ModifyMountTargetSecurityGroupsCommand_1 = require("./commands/ModifyMountTargetSecurityGroupsCommand");
@@ -72,6 +75,20 @@ class EFS extends EFSClient_1.EFSClient {
72
75
  return this.send(command, optionsOrCb);
73
76
  }
74
77
  }
78
+ createReplicationConfiguration(args, optionsOrCb, cb) {
79
+ const command = new CreateReplicationConfigurationCommand_1.CreateReplicationConfigurationCommand(args);
80
+ if (typeof optionsOrCb === "function") {
81
+ this.send(command, optionsOrCb);
82
+ }
83
+ else if (typeof cb === "function") {
84
+ if (typeof optionsOrCb !== "object")
85
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
86
+ this.send(command, optionsOrCb || {}, cb);
87
+ }
88
+ else {
89
+ return this.send(command, optionsOrCb);
90
+ }
91
+ }
75
92
  createTags(args, optionsOrCb, cb) {
76
93
  const command = new CreateTagsCommand_1.CreateTagsCommand(args);
77
94
  if (typeof optionsOrCb === "function") {
@@ -142,6 +159,20 @@ class EFS extends EFSClient_1.EFSClient {
142
159
  return this.send(command, optionsOrCb);
143
160
  }
144
161
  }
162
+ deleteReplicationConfiguration(args, optionsOrCb, cb) {
163
+ const command = new DeleteReplicationConfigurationCommand_1.DeleteReplicationConfigurationCommand(args);
164
+ if (typeof optionsOrCb === "function") {
165
+ this.send(command, optionsOrCb);
166
+ }
167
+ else if (typeof cb === "function") {
168
+ if (typeof optionsOrCb !== "object")
169
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
170
+ this.send(command, optionsOrCb || {}, cb);
171
+ }
172
+ else {
173
+ return this.send(command, optionsOrCb);
174
+ }
175
+ }
145
176
  deleteTags(args, optionsOrCb, cb) {
146
177
  const command = new DeleteTagsCommand_1.DeleteTagsCommand(args);
147
178
  if (typeof optionsOrCb === "function") {
@@ -268,6 +299,20 @@ class EFS extends EFSClient_1.EFSClient {
268
299
  return this.send(command, optionsOrCb);
269
300
  }
270
301
  }
302
+ describeReplicationConfigurations(args, optionsOrCb, cb) {
303
+ const command = new DescribeReplicationConfigurationsCommand_1.DescribeReplicationConfigurationsCommand(args);
304
+ if (typeof optionsOrCb === "function") {
305
+ this.send(command, optionsOrCb);
306
+ }
307
+ else if (typeof cb === "function") {
308
+ if (typeof optionsOrCb !== "object")
309
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
310
+ this.send(command, optionsOrCb || {}, cb);
311
+ }
312
+ else {
313
+ return this.send(command, optionsOrCb);
314
+ }
315
+ }
271
316
  describeTags(args, optionsOrCb, cb) {
272
317
  const command = new DescribeTagsCommand_1.DescribeTagsCommand(args);
273
318
  if (typeof optionsOrCb === "function") {
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateReplicationConfigurationCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class CreateReplicationConfigurationCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "EFSClient";
18
+ const commandName = "CreateReplicationConfigurationCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.CreateReplicationConfigurationRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.ReplicationConfigurationDescription.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1CreateReplicationConfigurationCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1CreateReplicationConfigurationCommand(output, context);
34
+ }
35
+ }
36
+ exports.CreateReplicationConfigurationCommand = CreateReplicationConfigurationCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteReplicationConfigurationCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class DeleteReplicationConfigurationCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "EFSClient";
18
+ const commandName = "DeleteReplicationConfigurationCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.DeleteReplicationConfigurationRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: (output) => output,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1DeleteReplicationConfigurationCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1DeleteReplicationConfigurationCommand(output, context);
34
+ }
35
+ }
36
+ exports.DeleteReplicationConfigurationCommand = DeleteReplicationConfigurationCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DescribeReplicationConfigurationsCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class DescribeReplicationConfigurationsCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "EFSClient";
18
+ const commandName = "DescribeReplicationConfigurationsCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.DescribeReplicationConfigurationsRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.DescribeReplicationConfigurationsResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1DescribeReplicationConfigurationsCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1DescribeReplicationConfigurationsCommand(output, context);
34
+ }
35
+ }
36
+ exports.DescribeReplicationConfigurationsCommand = DescribeReplicationConfigurationsCommand;
@@ -4,11 +4,13 @@ const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./CreateAccessPointCommand"), exports);
5
5
  tslib_1.__exportStar(require("./CreateFileSystemCommand"), exports);
6
6
  tslib_1.__exportStar(require("./CreateMountTargetCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateReplicationConfigurationCommand"), exports);
7
8
  tslib_1.__exportStar(require("./CreateTagsCommand"), exports);
8
9
  tslib_1.__exportStar(require("./DeleteAccessPointCommand"), exports);
9
10
  tslib_1.__exportStar(require("./DeleteFileSystemCommand"), exports);
10
11
  tslib_1.__exportStar(require("./DeleteFileSystemPolicyCommand"), exports);
11
12
  tslib_1.__exportStar(require("./DeleteMountTargetCommand"), exports);
13
+ tslib_1.__exportStar(require("./DeleteReplicationConfigurationCommand"), exports);
12
14
  tslib_1.__exportStar(require("./DeleteTagsCommand"), exports);
13
15
  tslib_1.__exportStar(require("./DescribeAccessPointsCommand"), exports);
14
16
  tslib_1.__exportStar(require("./DescribeAccountPreferencesCommand"), exports);
@@ -18,6 +20,7 @@ tslib_1.__exportStar(require("./DescribeFileSystemsCommand"), exports);
18
20
  tslib_1.__exportStar(require("./DescribeLifecycleConfigurationCommand"), exports);
19
21
  tslib_1.__exportStar(require("./DescribeMountTargetSecurityGroupsCommand"), exports);
20
22
  tslib_1.__exportStar(require("./DescribeMountTargetsCommand"), exports);
23
+ tslib_1.__exportStar(require("./DescribeReplicationConfigurationsCommand"), exports);
21
24
  tslib_1.__exportStar(require("./DescribeTagsCommand"), exports);
22
25
  tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
23
26
  tslib_1.__exportStar(require("./ModifyMountTargetSecurityGroupsCommand"), exports);
@@ -67,6 +67,14 @@ const regionHash = {
67
67
  },
68
68
  ],
69
69
  },
70
+ "ap-southeast-3": {
71
+ variants: [
72
+ {
73
+ hostname: "elasticfilesystem-fips.ap-southeast-3.amazonaws.com",
74
+ tags: ["fips"],
75
+ },
76
+ ],
77
+ },
70
78
  "ca-central-1": {
71
79
  variants: [
72
80
  {
@@ -239,6 +247,7 @@ const partitionHash = {
239
247
  "fips-ap-south-1",
240
248
  "fips-ap-southeast-1",
241
249
  "fips-ap-southeast-2",
250
+ "fips-ap-southeast-3",
242
251
  "fips-ca-central-1",
243
252
  "fips-eu-central-1",
244
253
  "fips-eu-north-1",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutAccountPreferencesRequest = exports.ModifyMountTargetSecurityGroupsRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.DescribeTagsResponse = exports.DescribeTagsRequest = exports.DescribeMountTargetSecurityGroupsResponse = exports.DescribeMountTargetSecurityGroupsRequest = exports.DescribeMountTargetsResponse = exports.DescribeMountTargetsRequest = exports.LifecycleConfigurationDescription = exports.LifecyclePolicy = exports.TransitionToPrimaryStorageClassRules = exports.TransitionToIARules = exports.DescribeLifecycleConfigurationRequest = exports.DescribeFileSystemsResponse = exports.DescribeFileSystemsRequest = exports.FileSystemPolicyDescription = exports.DescribeFileSystemPolicyRequest = exports.DescribeBackupPolicyRequest = exports.DescribeAccountPreferencesResponse = exports.ResourceIdPreference = exports.Resource = exports.ResourceIdType = exports.DescribeAccountPreferencesRequest = exports.DescribeAccessPointsResponse = exports.DescribeAccessPointsRequest = exports.DeleteTagsRequest = exports.DeleteMountTargetRequest = exports.DeleteFileSystemPolicyRequest = exports.DeleteFileSystemRequest = exports.DeleteAccessPointRequest = exports.CreateTagsRequest = exports.MountTargetDescription = exports.CreateMountTargetRequest = exports.FileSystemDescription = exports.FileSystemSize = exports.CreateFileSystemRequest = exports.ThroughputMode = exports.PerformanceMode = exports.CreateAccessPointRequest = exports.BackupPolicyDescription = exports.BackupPolicy = exports.Status = exports.AccessPointDescription = exports.Tag = exports.RootDirectory = exports.CreationInfo = exports.PosixUser = exports.LifeCycleState = void 0;
4
- exports.UpdateFileSystemRequest = exports.UntagResourceRequest = exports.TagResourceRequest = exports.PutLifecycleConfigurationRequest = exports.PutFileSystemPolicyRequest = exports.PutBackupPolicyRequest = exports.PutAccountPreferencesResponse = void 0;
3
+ exports.DescribeMountTargetSecurityGroupsResponse = exports.DescribeMountTargetSecurityGroupsRequest = exports.DescribeMountTargetsResponse = exports.DescribeMountTargetsRequest = exports.LifecycleConfigurationDescription = exports.LifecyclePolicy = exports.TransitionToPrimaryStorageClassRules = exports.TransitionToIARules = exports.DescribeLifecycleConfigurationRequest = exports.DescribeFileSystemsResponse = exports.DescribeFileSystemsRequest = exports.FileSystemPolicyDescription = exports.DescribeFileSystemPolicyRequest = exports.DescribeBackupPolicyRequest = exports.DescribeAccountPreferencesResponse = exports.ResourceIdPreference = exports.Resource = exports.ResourceIdType = exports.DescribeAccountPreferencesRequest = exports.DescribeAccessPointsResponse = exports.DescribeAccessPointsRequest = exports.DeleteTagsRequest = exports.DeleteReplicationConfigurationRequest = exports.DeleteMountTargetRequest = exports.DeleteFileSystemPolicyRequest = exports.DeleteFileSystemRequest = exports.DeleteAccessPointRequest = exports.CreateTagsRequest = exports.ReplicationConfigurationDescription = exports.Destination = exports.ReplicationStatus = exports.CreateReplicationConfigurationRequest = exports.DestinationToCreate = exports.MountTargetDescription = exports.CreateMountTargetRequest = exports.FileSystemDescription = exports.FileSystemSize = exports.CreateFileSystemRequest = exports.ThroughputMode = exports.PerformanceMode = exports.CreateAccessPointRequest = exports.BackupPolicyDescription = exports.BackupPolicy = exports.Status = exports.AccessPointDescription = exports.Tag = exports.RootDirectory = exports.CreationInfo = exports.PosixUser = exports.LifeCycleState = void 0;
4
+ exports.UpdateFileSystemRequest = exports.UntagResourceRequest = exports.TagResourceRequest = exports.PutLifecycleConfigurationRequest = exports.PutFileSystemPolicyRequest = exports.PutBackupPolicyRequest = exports.PutAccountPreferencesResponse = exports.PutAccountPreferencesRequest = exports.ModifyMountTargetSecurityGroupsRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.DescribeTagsResponse = exports.DescribeTagsRequest = exports.DescribeReplicationConfigurationsResponse = exports.DescribeReplicationConfigurationsRequest = void 0;
5
5
  var LifeCycleState;
6
6
  (function (LifeCycleState) {
7
7
  LifeCycleState["AVAILABLE"] = "available";
@@ -106,6 +106,37 @@ var MountTargetDescription;
106
106
  ...obj,
107
107
  });
108
108
  })(MountTargetDescription = exports.MountTargetDescription || (exports.MountTargetDescription = {}));
109
+ var DestinationToCreate;
110
+ (function (DestinationToCreate) {
111
+ DestinationToCreate.filterSensitiveLog = (obj) => ({
112
+ ...obj,
113
+ });
114
+ })(DestinationToCreate = exports.DestinationToCreate || (exports.DestinationToCreate = {}));
115
+ var CreateReplicationConfigurationRequest;
116
+ (function (CreateReplicationConfigurationRequest) {
117
+ CreateReplicationConfigurationRequest.filterSensitiveLog = (obj) => ({
118
+ ...obj,
119
+ });
120
+ })(CreateReplicationConfigurationRequest = exports.CreateReplicationConfigurationRequest || (exports.CreateReplicationConfigurationRequest = {}));
121
+ var ReplicationStatus;
122
+ (function (ReplicationStatus) {
123
+ ReplicationStatus["DELETING"] = "DELETING";
124
+ ReplicationStatus["ENABLED"] = "ENABLED";
125
+ ReplicationStatus["ENABLING"] = "ENABLING";
126
+ ReplicationStatus["ERROR"] = "ERROR";
127
+ })(ReplicationStatus = exports.ReplicationStatus || (exports.ReplicationStatus = {}));
128
+ var Destination;
129
+ (function (Destination) {
130
+ Destination.filterSensitiveLog = (obj) => ({
131
+ ...obj,
132
+ });
133
+ })(Destination = exports.Destination || (exports.Destination = {}));
134
+ var ReplicationConfigurationDescription;
135
+ (function (ReplicationConfigurationDescription) {
136
+ ReplicationConfigurationDescription.filterSensitiveLog = (obj) => ({
137
+ ...obj,
138
+ });
139
+ })(ReplicationConfigurationDescription = exports.ReplicationConfigurationDescription || (exports.ReplicationConfigurationDescription = {}));
109
140
  var CreateTagsRequest;
110
141
  (function (CreateTagsRequest) {
111
142
  CreateTagsRequest.filterSensitiveLog = (obj) => ({
@@ -136,6 +167,12 @@ var DeleteMountTargetRequest;
136
167
  ...obj,
137
168
  });
138
169
  })(DeleteMountTargetRequest = exports.DeleteMountTargetRequest || (exports.DeleteMountTargetRequest = {}));
170
+ var DeleteReplicationConfigurationRequest;
171
+ (function (DeleteReplicationConfigurationRequest) {
172
+ DeleteReplicationConfigurationRequest.filterSensitiveLog = (obj) => ({
173
+ ...obj,
174
+ });
175
+ })(DeleteReplicationConfigurationRequest = exports.DeleteReplicationConfigurationRequest || (exports.DeleteReplicationConfigurationRequest = {}));
139
176
  var DeleteTagsRequest;
140
177
  (function (DeleteTagsRequest) {
141
178
  DeleteTagsRequest.filterSensitiveLog = (obj) => ({
@@ -266,6 +303,18 @@ var DescribeMountTargetSecurityGroupsResponse;
266
303
  ...obj,
267
304
  });
268
305
  })(DescribeMountTargetSecurityGroupsResponse = exports.DescribeMountTargetSecurityGroupsResponse || (exports.DescribeMountTargetSecurityGroupsResponse = {}));
306
+ var DescribeReplicationConfigurationsRequest;
307
+ (function (DescribeReplicationConfigurationsRequest) {
308
+ DescribeReplicationConfigurationsRequest.filterSensitiveLog = (obj) => ({
309
+ ...obj,
310
+ });
311
+ })(DescribeReplicationConfigurationsRequest = exports.DescribeReplicationConfigurationsRequest || (exports.DescribeReplicationConfigurationsRequest = {}));
312
+ var DescribeReplicationConfigurationsResponse;
313
+ (function (DescribeReplicationConfigurationsResponse) {
314
+ DescribeReplicationConfigurationsResponse.filterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ })(DescribeReplicationConfigurationsResponse = exports.DescribeReplicationConfigurationsResponse || (exports.DescribeReplicationConfigurationsResponse = {}));
269
318
  var DescribeTagsRequest;
270
319
  (function (DescribeTagsRequest) {
271
320
  DescribeTagsRequest.filterSensitiveLog = (obj) => ({