@aws-sdk/client-ecs 3.181.0 → 3.184.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 (77) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/ECS.js +210 -217
  3. package/dist-es/ECSClient.js +22 -28
  4. package/dist-es/commands/CreateCapacityProviderCommand.js +21 -28
  5. package/dist-es/commands/CreateClusterCommand.js +21 -28
  6. package/dist-es/commands/CreateServiceCommand.js +21 -28
  7. package/dist-es/commands/CreateTaskSetCommand.js +21 -28
  8. package/dist-es/commands/DeleteAccountSettingCommand.js +21 -28
  9. package/dist-es/commands/DeleteAttributesCommand.js +21 -28
  10. package/dist-es/commands/DeleteCapacityProviderCommand.js +21 -28
  11. package/dist-es/commands/DeleteClusterCommand.js +21 -28
  12. package/dist-es/commands/DeleteServiceCommand.js +21 -28
  13. package/dist-es/commands/DeleteTaskSetCommand.js +21 -28
  14. package/dist-es/commands/DeregisterContainerInstanceCommand.js +21 -28
  15. package/dist-es/commands/DeregisterTaskDefinitionCommand.js +21 -28
  16. package/dist-es/commands/DescribeCapacityProvidersCommand.js +21 -28
  17. package/dist-es/commands/DescribeClustersCommand.js +21 -28
  18. package/dist-es/commands/DescribeContainerInstancesCommand.js +21 -28
  19. package/dist-es/commands/DescribeServicesCommand.js +21 -28
  20. package/dist-es/commands/DescribeTaskDefinitionCommand.js +21 -28
  21. package/dist-es/commands/DescribeTaskSetsCommand.js +21 -28
  22. package/dist-es/commands/DescribeTasksCommand.js +21 -28
  23. package/dist-es/commands/DiscoverPollEndpointCommand.js +21 -28
  24. package/dist-es/commands/ExecuteCommandCommand.js +21 -28
  25. package/dist-es/commands/ListAccountSettingsCommand.js +21 -28
  26. package/dist-es/commands/ListAttributesCommand.js +21 -28
  27. package/dist-es/commands/ListClustersCommand.js +21 -28
  28. package/dist-es/commands/ListContainerInstancesCommand.js +21 -28
  29. package/dist-es/commands/ListServicesCommand.js +21 -28
  30. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  31. package/dist-es/commands/ListTaskDefinitionFamiliesCommand.js +21 -28
  32. package/dist-es/commands/ListTaskDefinitionsCommand.js +21 -28
  33. package/dist-es/commands/ListTasksCommand.js +21 -28
  34. package/dist-es/commands/PutAccountSettingCommand.js +21 -28
  35. package/dist-es/commands/PutAccountSettingDefaultCommand.js +21 -28
  36. package/dist-es/commands/PutAttributesCommand.js +21 -28
  37. package/dist-es/commands/PutClusterCapacityProvidersCommand.js +21 -28
  38. package/dist-es/commands/RegisterContainerInstanceCommand.js +21 -28
  39. package/dist-es/commands/RegisterTaskDefinitionCommand.js +21 -28
  40. package/dist-es/commands/RunTaskCommand.js +21 -28
  41. package/dist-es/commands/StartTaskCommand.js +21 -28
  42. package/dist-es/commands/StopTaskCommand.js +21 -28
  43. package/dist-es/commands/SubmitAttachmentStateChangesCommand.js +21 -28
  44. package/dist-es/commands/SubmitContainerStateChangeCommand.js +21 -28
  45. package/dist-es/commands/SubmitTaskStateChangeCommand.js +21 -28
  46. package/dist-es/commands/TagResourceCommand.js +21 -28
  47. package/dist-es/commands/UntagResourceCommand.js +21 -28
  48. package/dist-es/commands/UpdateCapacityProviderCommand.js +21 -28
  49. package/dist-es/commands/UpdateClusterCommand.js +21 -28
  50. package/dist-es/commands/UpdateClusterSettingsCommand.js +21 -28
  51. package/dist-es/commands/UpdateContainerAgentCommand.js +21 -28
  52. package/dist-es/commands/UpdateContainerInstancesStateCommand.js +21 -28
  53. package/dist-es/commands/UpdateServiceCommand.js +21 -28
  54. package/dist-es/commands/UpdateServicePrimaryTaskSetCommand.js +21 -28
  55. package/dist-es/commands/UpdateTaskSetCommand.js +21 -28
  56. package/dist-es/endpoints.js +8 -8
  57. package/dist-es/models/ECSServiceException.js +5 -10
  58. package/dist-es/models/models_0.js +818 -449
  59. package/dist-es/pagination/ListAccountSettingsPaginator.js +25 -68
  60. package/dist-es/pagination/ListAttributesPaginator.js +25 -68
  61. package/dist-es/pagination/ListClustersPaginator.js +25 -68
  62. package/dist-es/pagination/ListContainerInstancesPaginator.js +25 -68
  63. package/dist-es/pagination/ListServicesPaginator.js +25 -68
  64. package/dist-es/pagination/ListTaskDefinitionFamiliesPaginator.js +25 -68
  65. package/dist-es/pagination/ListTaskDefinitionsPaginator.js +25 -68
  66. package/dist-es/pagination/ListTasksPaginator.js +25 -68
  67. package/dist-es/protocols/Aws_json1_1.js +4630 -5279
  68. package/dist-es/runtimeConfig.browser.js +26 -12
  69. package/dist-es/runtimeConfig.js +30 -12
  70. package/dist-es/runtimeConfig.native.js +8 -5
  71. package/dist-es/runtimeConfig.shared.js +8 -11
  72. package/dist-es/waiters/waitForServicesInactive.js +47 -88
  73. package/dist-es/waiters/waitForServicesStable.js +72 -123
  74. package/dist-es/waiters/waitForTasksRunning.js +63 -114
  75. package/dist-es/waiters/waitForTasksStopped.js +36 -67
  76. package/dist-types/models/models_0.d.ts +5 -8
  77. package/package.json +34 -34
@@ -1,18 +1,17 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { ECSServiceException as __BaseException } from "./ECSServiceException";
4
- var AccessDeniedException = (function (_super) {
5
- __extends(AccessDeniedException, _super);
6
- function AccessDeniedException(opts) {
7
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
- _this.name = "AccessDeniedException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
- return _this;
3
+ export class AccessDeniedException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccessDeniedException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccessDeniedException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
13
  }
13
- return AccessDeniedException;
14
- }(__BaseException));
15
- export { AccessDeniedException };
14
+ }
16
15
  export var AgentUpdateStatus;
17
16
  (function (AgentUpdateStatus) {
18
17
  AgentUpdateStatus["FAILED"] = "FAILED";
@@ -22,18 +21,18 @@ export var AgentUpdateStatus;
22
21
  AgentUpdateStatus["UPDATED"] = "UPDATED";
23
22
  AgentUpdateStatus["UPDATING"] = "UPDATING";
24
23
  })(AgentUpdateStatus || (AgentUpdateStatus = {}));
25
- var ClientException = (function (_super) {
26
- __extends(ClientException, _super);
27
- function ClientException(opts) {
28
- var _this = _super.call(this, __assign({ name: "ClientException", $fault: "client" }, opts)) || this;
29
- _this.name = "ClientException";
30
- _this.$fault = "client";
31
- Object.setPrototypeOf(_this, ClientException.prototype);
32
- return _this;
24
+ export class ClientException extends __BaseException {
25
+ constructor(opts) {
26
+ super({
27
+ name: "ClientException",
28
+ $fault: "client",
29
+ ...opts,
30
+ });
31
+ this.name = "ClientException";
32
+ this.$fault = "client";
33
+ Object.setPrototypeOf(this, ClientException.prototype);
33
34
  }
34
- return ClientException;
35
- }(__BaseException));
36
- export { ClientException };
35
+ }
37
36
  export var ManagedScalingStatus;
38
37
  (function (ManagedScalingStatus) {
39
38
  ManagedScalingStatus["DISABLED"] = "DISABLED";
@@ -58,54 +57,54 @@ export var CapacityProviderUpdateStatus;
58
57
  CapacityProviderUpdateStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
59
58
  CapacityProviderUpdateStatus["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
60
59
  })(CapacityProviderUpdateStatus || (CapacityProviderUpdateStatus = {}));
61
- var InvalidParameterException = (function (_super) {
62
- __extends(InvalidParameterException, _super);
63
- function InvalidParameterException(opts) {
64
- var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
65
- _this.name = "InvalidParameterException";
66
- _this.$fault = "client";
67
- Object.setPrototypeOf(_this, InvalidParameterException.prototype);
68
- return _this;
60
+ export class InvalidParameterException extends __BaseException {
61
+ constructor(opts) {
62
+ super({
63
+ name: "InvalidParameterException",
64
+ $fault: "client",
65
+ ...opts,
66
+ });
67
+ this.name = "InvalidParameterException";
68
+ this.$fault = "client";
69
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
69
70
  }
70
- return InvalidParameterException;
71
- }(__BaseException));
72
- export { InvalidParameterException };
73
- var LimitExceededException = (function (_super) {
74
- __extends(LimitExceededException, _super);
75
- function LimitExceededException(opts) {
76
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
77
- _this.name = "LimitExceededException";
78
- _this.$fault = "client";
79
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
80
- return _this;
71
+ }
72
+ export class LimitExceededException extends __BaseException {
73
+ constructor(opts) {
74
+ super({
75
+ name: "LimitExceededException",
76
+ $fault: "client",
77
+ ...opts,
78
+ });
79
+ this.name = "LimitExceededException";
80
+ this.$fault = "client";
81
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
81
82
  }
82
- return LimitExceededException;
83
- }(__BaseException));
84
- export { LimitExceededException };
85
- var ServerException = (function (_super) {
86
- __extends(ServerException, _super);
87
- function ServerException(opts) {
88
- var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
89
- _this.name = "ServerException";
90
- _this.$fault = "server";
91
- Object.setPrototypeOf(_this, ServerException.prototype);
92
- return _this;
83
+ }
84
+ export class ServerException extends __BaseException {
85
+ constructor(opts) {
86
+ super({
87
+ name: "ServerException",
88
+ $fault: "server",
89
+ ...opts,
90
+ });
91
+ this.name = "ServerException";
92
+ this.$fault = "server";
93
+ Object.setPrototypeOf(this, ServerException.prototype);
93
94
  }
94
- return ServerException;
95
- }(__BaseException));
96
- export { ServerException };
97
- var UpdateInProgressException = (function (_super) {
98
- __extends(UpdateInProgressException, _super);
99
- function UpdateInProgressException(opts) {
100
- var _this = _super.call(this, __assign({ name: "UpdateInProgressException", $fault: "client" }, opts)) || this;
101
- _this.name = "UpdateInProgressException";
102
- _this.$fault = "client";
103
- Object.setPrototypeOf(_this, UpdateInProgressException.prototype);
104
- return _this;
95
+ }
96
+ export class UpdateInProgressException extends __BaseException {
97
+ constructor(opts) {
98
+ super({
99
+ name: "UpdateInProgressException",
100
+ $fault: "client",
101
+ ...opts,
102
+ });
103
+ this.name = "UpdateInProgressException";
104
+ this.$fault = "client";
105
+ Object.setPrototypeOf(this, UpdateInProgressException.prototype);
105
106
  }
106
- return UpdateInProgressException;
107
- }(__BaseException));
108
- export { UpdateInProgressException };
107
+ }
109
108
  export var ExecuteCommandLogging;
110
109
  (function (ExecuteCommandLogging) {
111
110
  ExecuteCommandLogging["DEFAULT"] = "DEFAULT";
@@ -116,18 +115,18 @@ export var ClusterSettingName;
116
115
  (function (ClusterSettingName) {
117
116
  ClusterSettingName["CONTAINER_INSIGHTS"] = "containerInsights";
118
117
  })(ClusterSettingName || (ClusterSettingName = {}));
119
- var ClusterNotFoundException = (function (_super) {
120
- __extends(ClusterNotFoundException, _super);
121
- function ClusterNotFoundException(opts) {
122
- var _this = _super.call(this, __assign({ name: "ClusterNotFoundException", $fault: "client" }, opts)) || this;
123
- _this.name = "ClusterNotFoundException";
124
- _this.$fault = "client";
125
- Object.setPrototypeOf(_this, ClusterNotFoundException.prototype);
126
- return _this;
118
+ export class ClusterNotFoundException extends __BaseException {
119
+ constructor(opts) {
120
+ super({
121
+ name: "ClusterNotFoundException",
122
+ $fault: "client",
123
+ ...opts,
124
+ });
125
+ this.name = "ClusterNotFoundException";
126
+ this.$fault = "client";
127
+ Object.setPrototypeOf(this, ClusterNotFoundException.prototype);
127
128
  }
128
- return ClusterNotFoundException;
129
- }(__BaseException));
130
- export { ClusterNotFoundException };
129
+ }
131
130
  export var DeploymentControllerType;
132
131
  (function (DeploymentControllerType) {
133
132
  DeploymentControllerType["CODE_DEPLOY"] = "CODE_DEPLOY";
@@ -182,66 +181,66 @@ export var StabilityStatus;
182
181
  StabilityStatus["STABILIZING"] = "STABILIZING";
183
182
  StabilityStatus["STEADY_STATE"] = "STEADY_STATE";
184
183
  })(StabilityStatus || (StabilityStatus = {}));
185
- var PlatformTaskDefinitionIncompatibilityException = (function (_super) {
186
- __extends(PlatformTaskDefinitionIncompatibilityException, _super);
187
- function PlatformTaskDefinitionIncompatibilityException(opts) {
188
- var _this = _super.call(this, __assign({ name: "PlatformTaskDefinitionIncompatibilityException", $fault: "client" }, opts)) || this;
189
- _this.name = "PlatformTaskDefinitionIncompatibilityException";
190
- _this.$fault = "client";
191
- Object.setPrototypeOf(_this, PlatformTaskDefinitionIncompatibilityException.prototype);
192
- return _this;
184
+ export class PlatformTaskDefinitionIncompatibilityException extends __BaseException {
185
+ constructor(opts) {
186
+ super({
187
+ name: "PlatformTaskDefinitionIncompatibilityException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ this.name = "PlatformTaskDefinitionIncompatibilityException";
192
+ this.$fault = "client";
193
+ Object.setPrototypeOf(this, PlatformTaskDefinitionIncompatibilityException.prototype);
193
194
  }
194
- return PlatformTaskDefinitionIncompatibilityException;
195
- }(__BaseException));
196
- export { PlatformTaskDefinitionIncompatibilityException };
197
- var PlatformUnknownException = (function (_super) {
198
- __extends(PlatformUnknownException, _super);
199
- function PlatformUnknownException(opts) {
200
- var _this = _super.call(this, __assign({ name: "PlatformUnknownException", $fault: "client" }, opts)) || this;
201
- _this.name = "PlatformUnknownException";
202
- _this.$fault = "client";
203
- Object.setPrototypeOf(_this, PlatformUnknownException.prototype);
204
- return _this;
195
+ }
196
+ export class PlatformUnknownException extends __BaseException {
197
+ constructor(opts) {
198
+ super({
199
+ name: "PlatformUnknownException",
200
+ $fault: "client",
201
+ ...opts,
202
+ });
203
+ this.name = "PlatformUnknownException";
204
+ this.$fault = "client";
205
+ Object.setPrototypeOf(this, PlatformUnknownException.prototype);
205
206
  }
206
- return PlatformUnknownException;
207
- }(__BaseException));
208
- export { PlatformUnknownException };
209
- var UnsupportedFeatureException = (function (_super) {
210
- __extends(UnsupportedFeatureException, _super);
211
- function UnsupportedFeatureException(opts) {
212
- var _this = _super.call(this, __assign({ name: "UnsupportedFeatureException", $fault: "client" }, opts)) || this;
213
- _this.name = "UnsupportedFeatureException";
214
- _this.$fault = "client";
215
- Object.setPrototypeOf(_this, UnsupportedFeatureException.prototype);
216
- return _this;
207
+ }
208
+ export class UnsupportedFeatureException extends __BaseException {
209
+ constructor(opts) {
210
+ super({
211
+ name: "UnsupportedFeatureException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ this.name = "UnsupportedFeatureException";
216
+ this.$fault = "client";
217
+ Object.setPrototypeOf(this, UnsupportedFeatureException.prototype);
217
218
  }
218
- return UnsupportedFeatureException;
219
- }(__BaseException));
220
- export { UnsupportedFeatureException };
221
- var ServiceNotActiveException = (function (_super) {
222
- __extends(ServiceNotActiveException, _super);
223
- function ServiceNotActiveException(opts) {
224
- var _this = _super.call(this, __assign({ name: "ServiceNotActiveException", $fault: "client" }, opts)) || this;
225
- _this.name = "ServiceNotActiveException";
226
- _this.$fault = "client";
227
- Object.setPrototypeOf(_this, ServiceNotActiveException.prototype);
228
- return _this;
219
+ }
220
+ export class ServiceNotActiveException extends __BaseException {
221
+ constructor(opts) {
222
+ super({
223
+ name: "ServiceNotActiveException",
224
+ $fault: "client",
225
+ ...opts,
226
+ });
227
+ this.name = "ServiceNotActiveException";
228
+ this.$fault = "client";
229
+ Object.setPrototypeOf(this, ServiceNotActiveException.prototype);
229
230
  }
230
- return ServiceNotActiveException;
231
- }(__BaseException));
232
- export { ServiceNotActiveException };
233
- var ServiceNotFoundException = (function (_super) {
234
- __extends(ServiceNotFoundException, _super);
235
- function ServiceNotFoundException(opts) {
236
- var _this = _super.call(this, __assign({ name: "ServiceNotFoundException", $fault: "client" }, opts)) || this;
237
- _this.name = "ServiceNotFoundException";
238
- _this.$fault = "client";
239
- Object.setPrototypeOf(_this, ServiceNotFoundException.prototype);
240
- return _this;
231
+ }
232
+ export class ServiceNotFoundException extends __BaseException {
233
+ constructor(opts) {
234
+ super({
235
+ name: "ServiceNotFoundException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ this.name = "ServiceNotFoundException";
240
+ this.$fault = "client";
241
+ Object.setPrototypeOf(this, ServiceNotFoundException.prototype);
241
242
  }
242
- return ServiceNotFoundException;
243
- }(__BaseException));
244
- export { ServiceNotFoundException };
243
+ }
245
244
  export var SettingName;
246
245
  (function (SettingName) {
247
246
  SettingName["AWSVPC_TRUNKING"] = "awsvpcTrunking";
@@ -254,66 +253,66 @@ export var TargetType;
254
253
  (function (TargetType) {
255
254
  TargetType["CONTAINER_INSTANCE"] = "container-instance";
256
255
  })(TargetType || (TargetType = {}));
257
- var TargetNotFoundException = (function (_super) {
258
- __extends(TargetNotFoundException, _super);
259
- function TargetNotFoundException(opts) {
260
- var _this = _super.call(this, __assign({ name: "TargetNotFoundException", $fault: "client" }, opts)) || this;
261
- _this.name = "TargetNotFoundException";
262
- _this.$fault = "client";
263
- Object.setPrototypeOf(_this, TargetNotFoundException.prototype);
264
- return _this;
256
+ export class TargetNotFoundException extends __BaseException {
257
+ constructor(opts) {
258
+ super({
259
+ name: "TargetNotFoundException",
260
+ $fault: "client",
261
+ ...opts,
262
+ });
263
+ this.name = "TargetNotFoundException";
264
+ this.$fault = "client";
265
+ Object.setPrototypeOf(this, TargetNotFoundException.prototype);
265
266
  }
266
- return TargetNotFoundException;
267
- }(__BaseException));
268
- export { TargetNotFoundException };
269
- var ClusterContainsContainerInstancesException = (function (_super) {
270
- __extends(ClusterContainsContainerInstancesException, _super);
271
- function ClusterContainsContainerInstancesException(opts) {
272
- var _this = _super.call(this, __assign({ name: "ClusterContainsContainerInstancesException", $fault: "client" }, opts)) || this;
273
- _this.name = "ClusterContainsContainerInstancesException";
274
- _this.$fault = "client";
275
- Object.setPrototypeOf(_this, ClusterContainsContainerInstancesException.prototype);
276
- return _this;
267
+ }
268
+ export class ClusterContainsContainerInstancesException extends __BaseException {
269
+ constructor(opts) {
270
+ super({
271
+ name: "ClusterContainsContainerInstancesException",
272
+ $fault: "client",
273
+ ...opts,
274
+ });
275
+ this.name = "ClusterContainsContainerInstancesException";
276
+ this.$fault = "client";
277
+ Object.setPrototypeOf(this, ClusterContainsContainerInstancesException.prototype);
277
278
  }
278
- return ClusterContainsContainerInstancesException;
279
- }(__BaseException));
280
- export { ClusterContainsContainerInstancesException };
281
- var ClusterContainsServicesException = (function (_super) {
282
- __extends(ClusterContainsServicesException, _super);
283
- function ClusterContainsServicesException(opts) {
284
- var _this = _super.call(this, __assign({ name: "ClusterContainsServicesException", $fault: "client" }, opts)) || this;
285
- _this.name = "ClusterContainsServicesException";
286
- _this.$fault = "client";
287
- Object.setPrototypeOf(_this, ClusterContainsServicesException.prototype);
288
- return _this;
279
+ }
280
+ export class ClusterContainsServicesException extends __BaseException {
281
+ constructor(opts) {
282
+ super({
283
+ name: "ClusterContainsServicesException",
284
+ $fault: "client",
285
+ ...opts,
286
+ });
287
+ this.name = "ClusterContainsServicesException";
288
+ this.$fault = "client";
289
+ Object.setPrototypeOf(this, ClusterContainsServicesException.prototype);
289
290
  }
290
- return ClusterContainsServicesException;
291
- }(__BaseException));
292
- export { ClusterContainsServicesException };
293
- var ClusterContainsTasksException = (function (_super) {
294
- __extends(ClusterContainsTasksException, _super);
295
- function ClusterContainsTasksException(opts) {
296
- var _this = _super.call(this, __assign({ name: "ClusterContainsTasksException", $fault: "client" }, opts)) || this;
297
- _this.name = "ClusterContainsTasksException";
298
- _this.$fault = "client";
299
- Object.setPrototypeOf(_this, ClusterContainsTasksException.prototype);
300
- return _this;
291
+ }
292
+ export class ClusterContainsTasksException extends __BaseException {
293
+ constructor(opts) {
294
+ super({
295
+ name: "ClusterContainsTasksException",
296
+ $fault: "client",
297
+ ...opts,
298
+ });
299
+ this.name = "ClusterContainsTasksException";
300
+ this.$fault = "client";
301
+ Object.setPrototypeOf(this, ClusterContainsTasksException.prototype);
301
302
  }
302
- return ClusterContainsTasksException;
303
- }(__BaseException));
304
- export { ClusterContainsTasksException };
305
- var TaskSetNotFoundException = (function (_super) {
306
- __extends(TaskSetNotFoundException, _super);
307
- function TaskSetNotFoundException(opts) {
308
- var _this = _super.call(this, __assign({ name: "TaskSetNotFoundException", $fault: "client" }, opts)) || this;
309
- _this.name = "TaskSetNotFoundException";
310
- _this.$fault = "client";
311
- Object.setPrototypeOf(_this, TaskSetNotFoundException.prototype);
312
- return _this;
303
+ }
304
+ export class TaskSetNotFoundException extends __BaseException {
305
+ constructor(opts) {
306
+ super({
307
+ name: "TaskSetNotFoundException",
308
+ $fault: "client",
309
+ ...opts,
310
+ });
311
+ this.name = "TaskSetNotFoundException";
312
+ this.$fault = "client";
313
+ Object.setPrototypeOf(this, TaskSetNotFoundException.prototype);
313
314
  }
314
- return TaskSetNotFoundException;
315
- }(__BaseException));
316
- export { TaskSetNotFoundException };
315
+ }
317
316
  export var InstanceHealthCheckState;
318
317
  (function (InstanceHealthCheckState) {
319
318
  InstanceHealthCheckState["IMPAIRED"] = "IMPAIRED";
@@ -508,18 +507,18 @@ export var TaskSetField;
508
507
  (function (TaskSetField) {
509
508
  TaskSetField["TAGS"] = "TAGS";
510
509
  })(TaskSetField || (TaskSetField = {}));
511
- var TargetNotConnectedException = (function (_super) {
512
- __extends(TargetNotConnectedException, _super);
513
- function TargetNotConnectedException(opts) {
514
- var _this = _super.call(this, __assign({ name: "TargetNotConnectedException", $fault: "client" }, opts)) || this;
515
- _this.name = "TargetNotConnectedException";
516
- _this.$fault = "client";
517
- Object.setPrototypeOf(_this, TargetNotConnectedException.prototype);
518
- return _this;
510
+ export class TargetNotConnectedException extends __BaseException {
511
+ constructor(opts) {
512
+ super({
513
+ name: "TargetNotConnectedException",
514
+ $fault: "client",
515
+ ...opts,
516
+ });
517
+ this.name = "TargetNotConnectedException";
518
+ this.$fault = "client";
519
+ Object.setPrototypeOf(this, TargetNotConnectedException.prototype);
519
520
  }
520
- return TargetNotConnectedException;
521
- }(__BaseException));
522
- export { TargetNotConnectedException };
521
+ }
523
522
  export var ContainerInstanceStatus;
524
523
  (function (ContainerInstanceStatus) {
525
524
  ContainerInstanceStatus["ACTIVE"] = "ACTIVE";
@@ -545,263 +544,633 @@ export var DesiredStatus;
545
544
  DesiredStatus["RUNNING"] = "RUNNING";
546
545
  DesiredStatus["STOPPED"] = "STOPPED";
547
546
  })(DesiredStatus || (DesiredStatus = {}));
548
- var AttributeLimitExceededException = (function (_super) {
549
- __extends(AttributeLimitExceededException, _super);
550
- function AttributeLimitExceededException(opts) {
551
- var _this = _super.call(this, __assign({ name: "AttributeLimitExceededException", $fault: "client" }, opts)) || this;
552
- _this.name = "AttributeLimitExceededException";
553
- _this.$fault = "client";
554
- Object.setPrototypeOf(_this, AttributeLimitExceededException.prototype);
555
- return _this;
547
+ export class AttributeLimitExceededException extends __BaseException {
548
+ constructor(opts) {
549
+ super({
550
+ name: "AttributeLimitExceededException",
551
+ $fault: "client",
552
+ ...opts,
553
+ });
554
+ this.name = "AttributeLimitExceededException";
555
+ this.$fault = "client";
556
+ Object.setPrototypeOf(this, AttributeLimitExceededException.prototype);
556
557
  }
557
- return AttributeLimitExceededException;
558
- }(__BaseException));
559
- export { AttributeLimitExceededException };
560
- var ResourceInUseException = (function (_super) {
561
- __extends(ResourceInUseException, _super);
562
- function ResourceInUseException(opts) {
563
- var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
564
- _this.name = "ResourceInUseException";
565
- _this.$fault = "client";
566
- Object.setPrototypeOf(_this, ResourceInUseException.prototype);
567
- return _this;
558
+ }
559
+ export class ResourceInUseException extends __BaseException {
560
+ constructor(opts) {
561
+ super({
562
+ name: "ResourceInUseException",
563
+ $fault: "client",
564
+ ...opts,
565
+ });
566
+ this.name = "ResourceInUseException";
567
+ this.$fault = "client";
568
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
568
569
  }
569
- return ResourceInUseException;
570
- }(__BaseException));
571
- export { ResourceInUseException };
570
+ }
572
571
  export var PlatformDeviceType;
573
572
  (function (PlatformDeviceType) {
574
573
  PlatformDeviceType["GPU"] = "GPU";
575
574
  })(PlatformDeviceType || (PlatformDeviceType = {}));
576
- var BlockedException = (function (_super) {
577
- __extends(BlockedException, _super);
578
- function BlockedException(opts) {
579
- var _this = _super.call(this, __assign({ name: "BlockedException", $fault: "client" }, opts)) || this;
580
- _this.name = "BlockedException";
581
- _this.$fault = "client";
582
- Object.setPrototypeOf(_this, BlockedException.prototype);
583
- return _this;
575
+ export class BlockedException extends __BaseException {
576
+ constructor(opts) {
577
+ super({
578
+ name: "BlockedException",
579
+ $fault: "client",
580
+ ...opts,
581
+ });
582
+ this.name = "BlockedException";
583
+ this.$fault = "client";
584
+ Object.setPrototypeOf(this, BlockedException.prototype);
584
585
  }
585
- return BlockedException;
586
- }(__BaseException));
587
- export { BlockedException };
588
- var ResourceNotFoundException = (function (_super) {
589
- __extends(ResourceNotFoundException, _super);
590
- function ResourceNotFoundException(opts) {
591
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
592
- _this.name = "ResourceNotFoundException";
593
- _this.$fault = "client";
594
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
595
- return _this;
586
+ }
587
+ export class ResourceNotFoundException extends __BaseException {
588
+ constructor(opts) {
589
+ super({
590
+ name: "ResourceNotFoundException",
591
+ $fault: "client",
592
+ ...opts,
593
+ });
594
+ this.name = "ResourceNotFoundException";
595
+ this.$fault = "client";
596
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
596
597
  }
597
- return ResourceNotFoundException;
598
- }(__BaseException));
599
- export { ResourceNotFoundException };
600
- var MissingVersionException = (function (_super) {
601
- __extends(MissingVersionException, _super);
602
- function MissingVersionException(opts) {
603
- var _this = _super.call(this, __assign({ name: "MissingVersionException", $fault: "client" }, opts)) || this;
604
- _this.name = "MissingVersionException";
605
- _this.$fault = "client";
606
- Object.setPrototypeOf(_this, MissingVersionException.prototype);
607
- return _this;
598
+ }
599
+ export class MissingVersionException extends __BaseException {
600
+ constructor(opts) {
601
+ super({
602
+ name: "MissingVersionException",
603
+ $fault: "client",
604
+ ...opts,
605
+ });
606
+ this.name = "MissingVersionException";
607
+ this.$fault = "client";
608
+ Object.setPrototypeOf(this, MissingVersionException.prototype);
608
609
  }
609
- return MissingVersionException;
610
- }(__BaseException));
611
- export { MissingVersionException };
612
- var NoUpdateAvailableException = (function (_super) {
613
- __extends(NoUpdateAvailableException, _super);
614
- function NoUpdateAvailableException(opts) {
615
- var _this = _super.call(this, __assign({ name: "NoUpdateAvailableException", $fault: "client" }, opts)) || this;
616
- _this.name = "NoUpdateAvailableException";
617
- _this.$fault = "client";
618
- Object.setPrototypeOf(_this, NoUpdateAvailableException.prototype);
619
- return _this;
610
+ }
611
+ export class NoUpdateAvailableException extends __BaseException {
612
+ constructor(opts) {
613
+ super({
614
+ name: "NoUpdateAvailableException",
615
+ $fault: "client",
616
+ ...opts,
617
+ });
618
+ this.name = "NoUpdateAvailableException";
619
+ this.$fault = "client";
620
+ Object.setPrototypeOf(this, NoUpdateAvailableException.prototype);
620
621
  }
621
- return NoUpdateAvailableException;
622
- }(__BaseException));
623
- export { NoUpdateAvailableException };
624
- export var ManagedScalingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
625
- export var AutoScalingGroupProviderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
626
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
627
- export var CreateCapacityProviderRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
628
- export var CapacityProviderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
629
- export var CreateCapacityProviderResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
630
- export var ExecuteCommandLogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
631
- export var ExecuteCommandConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
632
- export var ClusterConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
633
- export var CapacityProviderStrategyItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
634
- export var ClusterSettingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
635
- export var CreateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
636
- export var KeyValuePairFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
637
- export var AttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
638
- export var ClusterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
639
- export var CreateClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
640
- export var DeploymentCircuitBreakerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
641
- export var DeploymentConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
642
- export var DeploymentControllerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
643
- export var LoadBalancerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
644
- export var AwsVpcConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
645
- export var NetworkConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
646
- export var PlacementConstraintFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
647
- export var PlacementStrategyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
648
- export var ServiceRegistryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
649
- export var CreateServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
650
- export var DeploymentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
651
- export var ServiceEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
652
- export var ScaleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
653
- export var TaskSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
654
- export var ServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
655
- export var CreateServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
656
- export var CreateTaskSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
657
- export var CreateTaskSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
658
- export var DeleteAccountSettingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
659
- export var SettingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
660
- export var DeleteAccountSettingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
661
- export var AttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
662
- export var DeleteAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
663
- export var DeleteAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
664
- export var DeleteCapacityProviderRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
665
- export var DeleteCapacityProviderResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
666
- export var DeleteClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
667
- export var DeleteClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
668
- export var DeleteServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
669
- export var DeleteServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
670
- export var DeleteTaskSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
671
- export var DeleteTaskSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
672
- export var DeregisterContainerInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
673
- export var InstanceHealthCheckResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
674
- export var ContainerInstanceHealthStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
675
- export var ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
676
- export var VersionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
677
- export var ContainerInstanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
678
- export var DeregisterContainerInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
679
- export var DeregisterTaskDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
680
- export var ContainerDependencyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
681
- export var EnvironmentFileFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
682
- export var HostEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
683
- export var FirelensConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
684
- export var HealthCheckFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
685
- export var KernelCapabilitiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
686
- export var DeviceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
687
- export var TmpfsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
688
- export var LinuxParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
689
- export var SecretFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
690
- export var LogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
691
- export var MountPointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
692
- export var PortMappingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
693
- export var RepositoryCredentialsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
694
- export var ResourceRequirementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
695
- export var SystemControlFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
696
- export var UlimitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
697
- export var VolumeFromFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
698
- export var ContainerDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
699
- export var EphemeralStorageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
700
- export var InferenceAcceleratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
701
- export var TaskDefinitionPlacementConstraintFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
702
- export var ProxyConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
703
- export var RuntimePlatformFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
704
- export var DockerVolumeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
705
- export var EFSAuthorizationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
706
- export var EFSVolumeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
707
- export var FSxWindowsFileServerAuthorizationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
708
- export var FSxWindowsFileServerVolumeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
709
- export var HostVolumePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
710
- export var VolumeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
711
- export var TaskDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
712
- export var DeregisterTaskDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
713
- export var DescribeCapacityProvidersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
714
- export var FailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
715
- export var DescribeCapacityProvidersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
716
- export var DescribeClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
717
- export var DescribeClustersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
718
- export var DescribeContainerInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
719
- export var DescribeContainerInstancesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
720
- export var DescribeServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
721
- export var DescribeServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
722
- export var DescribeTaskDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
723
- export var DescribeTaskDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
724
- export var DescribeTasksRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
725
- export var ManagedAgentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
726
- export var NetworkBindingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
727
- export var NetworkInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
728
- export var ContainerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
729
- export var ContainerOverrideFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
730
- export var InferenceAcceleratorOverrideFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
731
- export var TaskOverrideFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
732
- export var TaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
733
- export var DescribeTasksResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
734
- export var DescribeTaskSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
735
- export var DescribeTaskSetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
736
- export var DiscoverPollEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
737
- export var DiscoverPollEndpointResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
738
- export var ExecuteCommandRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
739
- export var SessionFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tokenValue && { tokenValue: SENSITIVE_STRING }))); };
740
- export var ExecuteCommandResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.session && { session: SessionFilterSensitiveLog(obj.session) }))); };
741
- export var ListAccountSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
742
- export var ListAccountSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
743
- export var ListAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
744
- export var ListAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
745
- export var ListClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
746
- export var ListClustersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
747
- export var ListContainerInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
748
- export var ListContainerInstancesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
749
- export var ListServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
750
- export var ListServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
751
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
752
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
753
- export var ListTaskDefinitionFamiliesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
754
- export var ListTaskDefinitionFamiliesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
755
- export var ListTaskDefinitionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
756
- export var ListTaskDefinitionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
757
- export var ListTasksRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
758
- export var ListTasksResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
759
- export var PutAccountSettingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
760
- export var PutAccountSettingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
761
- export var PutAccountSettingDefaultRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
762
- export var PutAccountSettingDefaultResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
763
- export var PutAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
764
- export var PutAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
765
- export var PutClusterCapacityProvidersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
766
- export var PutClusterCapacityProvidersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
767
- export var PlatformDeviceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
768
- export var RegisterContainerInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
769
- export var RegisterContainerInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
770
- export var RegisterTaskDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
771
- export var RegisterTaskDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
772
- export var RunTaskRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
773
- export var RunTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
774
- export var StartTaskRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
775
- export var StartTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
776
- export var StopTaskRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
777
- export var StopTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
778
- export var AttachmentStateChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
779
- export var SubmitAttachmentStateChangesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
780
- export var SubmitAttachmentStateChangesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
781
- export var SubmitContainerStateChangeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
782
- export var SubmitContainerStateChangeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
783
- export var ContainerStateChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
784
- export var ManagedAgentStateChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
785
- export var SubmitTaskStateChangeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
786
- export var SubmitTaskStateChangeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
787
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
788
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
789
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
790
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
791
- export var AutoScalingGroupProviderUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
792
- export var UpdateCapacityProviderRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
793
- export var UpdateCapacityProviderResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
794
- export var UpdateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
795
- export var UpdateClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
796
- export var UpdateClusterSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
797
- export var UpdateClusterSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
798
- export var UpdateContainerAgentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
799
- export var UpdateContainerAgentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
800
- export var UpdateContainerInstancesStateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
801
- export var UpdateContainerInstancesStateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
802
- export var UpdateServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
803
- export var UpdateServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
804
- export var UpdateServicePrimaryTaskSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
805
- export var UpdateServicePrimaryTaskSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
806
- export var UpdateTaskSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
807
- export var UpdateTaskSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
622
+ }
623
+ export const ManagedScalingFilterSensitiveLog = (obj) => ({
624
+ ...obj,
625
+ });
626
+ export const AutoScalingGroupProviderFilterSensitiveLog = (obj) => ({
627
+ ...obj,
628
+ });
629
+ export const TagFilterSensitiveLog = (obj) => ({
630
+ ...obj,
631
+ });
632
+ export const CreateCapacityProviderRequestFilterSensitiveLog = (obj) => ({
633
+ ...obj,
634
+ });
635
+ export const CapacityProviderFilterSensitiveLog = (obj) => ({
636
+ ...obj,
637
+ });
638
+ export const CreateCapacityProviderResponseFilterSensitiveLog = (obj) => ({
639
+ ...obj,
640
+ });
641
+ export const ExecuteCommandLogConfigurationFilterSensitiveLog = (obj) => ({
642
+ ...obj,
643
+ });
644
+ export const ExecuteCommandConfigurationFilterSensitiveLog = (obj) => ({
645
+ ...obj,
646
+ });
647
+ export const ClusterConfigurationFilterSensitiveLog = (obj) => ({
648
+ ...obj,
649
+ });
650
+ export const CapacityProviderStrategyItemFilterSensitiveLog = (obj) => ({
651
+ ...obj,
652
+ });
653
+ export const ClusterSettingFilterSensitiveLog = (obj) => ({
654
+ ...obj,
655
+ });
656
+ export const CreateClusterRequestFilterSensitiveLog = (obj) => ({
657
+ ...obj,
658
+ });
659
+ export const KeyValuePairFilterSensitiveLog = (obj) => ({
660
+ ...obj,
661
+ });
662
+ export const AttachmentFilterSensitiveLog = (obj) => ({
663
+ ...obj,
664
+ });
665
+ export const ClusterFilterSensitiveLog = (obj) => ({
666
+ ...obj,
667
+ });
668
+ export const CreateClusterResponseFilterSensitiveLog = (obj) => ({
669
+ ...obj,
670
+ });
671
+ export const DeploymentCircuitBreakerFilterSensitiveLog = (obj) => ({
672
+ ...obj,
673
+ });
674
+ export const DeploymentConfigurationFilterSensitiveLog = (obj) => ({
675
+ ...obj,
676
+ });
677
+ export const DeploymentControllerFilterSensitiveLog = (obj) => ({
678
+ ...obj,
679
+ });
680
+ export const LoadBalancerFilterSensitiveLog = (obj) => ({
681
+ ...obj,
682
+ });
683
+ export const AwsVpcConfigurationFilterSensitiveLog = (obj) => ({
684
+ ...obj,
685
+ });
686
+ export const NetworkConfigurationFilterSensitiveLog = (obj) => ({
687
+ ...obj,
688
+ });
689
+ export const PlacementConstraintFilterSensitiveLog = (obj) => ({
690
+ ...obj,
691
+ });
692
+ export const PlacementStrategyFilterSensitiveLog = (obj) => ({
693
+ ...obj,
694
+ });
695
+ export const ServiceRegistryFilterSensitiveLog = (obj) => ({
696
+ ...obj,
697
+ });
698
+ export const CreateServiceRequestFilterSensitiveLog = (obj) => ({
699
+ ...obj,
700
+ });
701
+ export const DeploymentFilterSensitiveLog = (obj) => ({
702
+ ...obj,
703
+ });
704
+ export const ServiceEventFilterSensitiveLog = (obj) => ({
705
+ ...obj,
706
+ });
707
+ export const ScaleFilterSensitiveLog = (obj) => ({
708
+ ...obj,
709
+ });
710
+ export const TaskSetFilterSensitiveLog = (obj) => ({
711
+ ...obj,
712
+ });
713
+ export const ServiceFilterSensitiveLog = (obj) => ({
714
+ ...obj,
715
+ });
716
+ export const CreateServiceResponseFilterSensitiveLog = (obj) => ({
717
+ ...obj,
718
+ });
719
+ export const CreateTaskSetRequestFilterSensitiveLog = (obj) => ({
720
+ ...obj,
721
+ });
722
+ export const CreateTaskSetResponseFilterSensitiveLog = (obj) => ({
723
+ ...obj,
724
+ });
725
+ export const DeleteAccountSettingRequestFilterSensitiveLog = (obj) => ({
726
+ ...obj,
727
+ });
728
+ export const SettingFilterSensitiveLog = (obj) => ({
729
+ ...obj,
730
+ });
731
+ export const DeleteAccountSettingResponseFilterSensitiveLog = (obj) => ({
732
+ ...obj,
733
+ });
734
+ export const AttributeFilterSensitiveLog = (obj) => ({
735
+ ...obj,
736
+ });
737
+ export const DeleteAttributesRequestFilterSensitiveLog = (obj) => ({
738
+ ...obj,
739
+ });
740
+ export const DeleteAttributesResponseFilterSensitiveLog = (obj) => ({
741
+ ...obj,
742
+ });
743
+ export const DeleteCapacityProviderRequestFilterSensitiveLog = (obj) => ({
744
+ ...obj,
745
+ });
746
+ export const DeleteCapacityProviderResponseFilterSensitiveLog = (obj) => ({
747
+ ...obj,
748
+ });
749
+ export const DeleteClusterRequestFilterSensitiveLog = (obj) => ({
750
+ ...obj,
751
+ });
752
+ export const DeleteClusterResponseFilterSensitiveLog = (obj) => ({
753
+ ...obj,
754
+ });
755
+ export const DeleteServiceRequestFilterSensitiveLog = (obj) => ({
756
+ ...obj,
757
+ });
758
+ export const DeleteServiceResponseFilterSensitiveLog = (obj) => ({
759
+ ...obj,
760
+ });
761
+ export const DeleteTaskSetRequestFilterSensitiveLog = (obj) => ({
762
+ ...obj,
763
+ });
764
+ export const DeleteTaskSetResponseFilterSensitiveLog = (obj) => ({
765
+ ...obj,
766
+ });
767
+ export const DeregisterContainerInstanceRequestFilterSensitiveLog = (obj) => ({
768
+ ...obj,
769
+ });
770
+ export const InstanceHealthCheckResultFilterSensitiveLog = (obj) => ({
771
+ ...obj,
772
+ });
773
+ export const ContainerInstanceHealthStatusFilterSensitiveLog = (obj) => ({
774
+ ...obj,
775
+ });
776
+ export const ResourceFilterSensitiveLog = (obj) => ({
777
+ ...obj,
778
+ });
779
+ export const VersionInfoFilterSensitiveLog = (obj) => ({
780
+ ...obj,
781
+ });
782
+ export const ContainerInstanceFilterSensitiveLog = (obj) => ({
783
+ ...obj,
784
+ });
785
+ export const DeregisterContainerInstanceResponseFilterSensitiveLog = (obj) => ({
786
+ ...obj,
787
+ });
788
+ export const DeregisterTaskDefinitionRequestFilterSensitiveLog = (obj) => ({
789
+ ...obj,
790
+ });
791
+ export const ContainerDependencyFilterSensitiveLog = (obj) => ({
792
+ ...obj,
793
+ });
794
+ export const EnvironmentFileFilterSensitiveLog = (obj) => ({
795
+ ...obj,
796
+ });
797
+ export const HostEntryFilterSensitiveLog = (obj) => ({
798
+ ...obj,
799
+ });
800
+ export const FirelensConfigurationFilterSensitiveLog = (obj) => ({
801
+ ...obj,
802
+ });
803
+ export const HealthCheckFilterSensitiveLog = (obj) => ({
804
+ ...obj,
805
+ });
806
+ export const KernelCapabilitiesFilterSensitiveLog = (obj) => ({
807
+ ...obj,
808
+ });
809
+ export const DeviceFilterSensitiveLog = (obj) => ({
810
+ ...obj,
811
+ });
812
+ export const TmpfsFilterSensitiveLog = (obj) => ({
813
+ ...obj,
814
+ });
815
+ export const LinuxParametersFilterSensitiveLog = (obj) => ({
816
+ ...obj,
817
+ });
818
+ export const SecretFilterSensitiveLog = (obj) => ({
819
+ ...obj,
820
+ });
821
+ export const LogConfigurationFilterSensitiveLog = (obj) => ({
822
+ ...obj,
823
+ });
824
+ export const MountPointFilterSensitiveLog = (obj) => ({
825
+ ...obj,
826
+ });
827
+ export const PortMappingFilterSensitiveLog = (obj) => ({
828
+ ...obj,
829
+ });
830
+ export const RepositoryCredentialsFilterSensitiveLog = (obj) => ({
831
+ ...obj,
832
+ });
833
+ export const ResourceRequirementFilterSensitiveLog = (obj) => ({
834
+ ...obj,
835
+ });
836
+ export const SystemControlFilterSensitiveLog = (obj) => ({
837
+ ...obj,
838
+ });
839
+ export const UlimitFilterSensitiveLog = (obj) => ({
840
+ ...obj,
841
+ });
842
+ export const VolumeFromFilterSensitiveLog = (obj) => ({
843
+ ...obj,
844
+ });
845
+ export const ContainerDefinitionFilterSensitiveLog = (obj) => ({
846
+ ...obj,
847
+ });
848
+ export const EphemeralStorageFilterSensitiveLog = (obj) => ({
849
+ ...obj,
850
+ });
851
+ export const InferenceAcceleratorFilterSensitiveLog = (obj) => ({
852
+ ...obj,
853
+ });
854
+ export const TaskDefinitionPlacementConstraintFilterSensitiveLog = (obj) => ({
855
+ ...obj,
856
+ });
857
+ export const ProxyConfigurationFilterSensitiveLog = (obj) => ({
858
+ ...obj,
859
+ });
860
+ export const RuntimePlatformFilterSensitiveLog = (obj) => ({
861
+ ...obj,
862
+ });
863
+ export const DockerVolumeConfigurationFilterSensitiveLog = (obj) => ({
864
+ ...obj,
865
+ });
866
+ export const EFSAuthorizationConfigFilterSensitiveLog = (obj) => ({
867
+ ...obj,
868
+ });
869
+ export const EFSVolumeConfigurationFilterSensitiveLog = (obj) => ({
870
+ ...obj,
871
+ });
872
+ export const FSxWindowsFileServerAuthorizationConfigFilterSensitiveLog = (obj) => ({
873
+ ...obj,
874
+ });
875
+ export const FSxWindowsFileServerVolumeConfigurationFilterSensitiveLog = (obj) => ({
876
+ ...obj,
877
+ });
878
+ export const HostVolumePropertiesFilterSensitiveLog = (obj) => ({
879
+ ...obj,
880
+ });
881
+ export const VolumeFilterSensitiveLog = (obj) => ({
882
+ ...obj,
883
+ });
884
+ export const TaskDefinitionFilterSensitiveLog = (obj) => ({
885
+ ...obj,
886
+ });
887
+ export const DeregisterTaskDefinitionResponseFilterSensitiveLog = (obj) => ({
888
+ ...obj,
889
+ });
890
+ export const DescribeCapacityProvidersRequestFilterSensitiveLog = (obj) => ({
891
+ ...obj,
892
+ });
893
+ export const FailureFilterSensitiveLog = (obj) => ({
894
+ ...obj,
895
+ });
896
+ export const DescribeCapacityProvidersResponseFilterSensitiveLog = (obj) => ({
897
+ ...obj,
898
+ });
899
+ export const DescribeClustersRequestFilterSensitiveLog = (obj) => ({
900
+ ...obj,
901
+ });
902
+ export const DescribeClustersResponseFilterSensitiveLog = (obj) => ({
903
+ ...obj,
904
+ });
905
+ export const DescribeContainerInstancesRequestFilterSensitiveLog = (obj) => ({
906
+ ...obj,
907
+ });
908
+ export const DescribeContainerInstancesResponseFilterSensitiveLog = (obj) => ({
909
+ ...obj,
910
+ });
911
+ export const DescribeServicesRequestFilterSensitiveLog = (obj) => ({
912
+ ...obj,
913
+ });
914
+ export const DescribeServicesResponseFilterSensitiveLog = (obj) => ({
915
+ ...obj,
916
+ });
917
+ export const DescribeTaskDefinitionRequestFilterSensitiveLog = (obj) => ({
918
+ ...obj,
919
+ });
920
+ export const DescribeTaskDefinitionResponseFilterSensitiveLog = (obj) => ({
921
+ ...obj,
922
+ });
923
+ export const DescribeTasksRequestFilterSensitiveLog = (obj) => ({
924
+ ...obj,
925
+ });
926
+ export const ManagedAgentFilterSensitiveLog = (obj) => ({
927
+ ...obj,
928
+ });
929
+ export const NetworkBindingFilterSensitiveLog = (obj) => ({
930
+ ...obj,
931
+ });
932
+ export const NetworkInterfaceFilterSensitiveLog = (obj) => ({
933
+ ...obj,
934
+ });
935
+ export const ContainerFilterSensitiveLog = (obj) => ({
936
+ ...obj,
937
+ });
938
+ export const ContainerOverrideFilterSensitiveLog = (obj) => ({
939
+ ...obj,
940
+ });
941
+ export const InferenceAcceleratorOverrideFilterSensitiveLog = (obj) => ({
942
+ ...obj,
943
+ });
944
+ export const TaskOverrideFilterSensitiveLog = (obj) => ({
945
+ ...obj,
946
+ });
947
+ export const TaskFilterSensitiveLog = (obj) => ({
948
+ ...obj,
949
+ });
950
+ export const DescribeTasksResponseFilterSensitiveLog = (obj) => ({
951
+ ...obj,
952
+ });
953
+ export const DescribeTaskSetsRequestFilterSensitiveLog = (obj) => ({
954
+ ...obj,
955
+ });
956
+ export const DescribeTaskSetsResponseFilterSensitiveLog = (obj) => ({
957
+ ...obj,
958
+ });
959
+ export const DiscoverPollEndpointRequestFilterSensitiveLog = (obj) => ({
960
+ ...obj,
961
+ });
962
+ export const DiscoverPollEndpointResponseFilterSensitiveLog = (obj) => ({
963
+ ...obj,
964
+ });
965
+ export const ExecuteCommandRequestFilterSensitiveLog = (obj) => ({
966
+ ...obj,
967
+ });
968
+ export const SessionFilterSensitiveLog = (obj) => ({
969
+ ...obj,
970
+ ...(obj.tokenValue && { tokenValue: SENSITIVE_STRING }),
971
+ });
972
+ export const ExecuteCommandResponseFilterSensitiveLog = (obj) => ({
973
+ ...obj,
974
+ ...(obj.session && { session: SessionFilterSensitiveLog(obj.session) }),
975
+ });
976
+ export const ListAccountSettingsRequestFilterSensitiveLog = (obj) => ({
977
+ ...obj,
978
+ });
979
+ export const ListAccountSettingsResponseFilterSensitiveLog = (obj) => ({
980
+ ...obj,
981
+ });
982
+ export const ListAttributesRequestFilterSensitiveLog = (obj) => ({
983
+ ...obj,
984
+ });
985
+ export const ListAttributesResponseFilterSensitiveLog = (obj) => ({
986
+ ...obj,
987
+ });
988
+ export const ListClustersRequestFilterSensitiveLog = (obj) => ({
989
+ ...obj,
990
+ });
991
+ export const ListClustersResponseFilterSensitiveLog = (obj) => ({
992
+ ...obj,
993
+ });
994
+ export const ListContainerInstancesRequestFilterSensitiveLog = (obj) => ({
995
+ ...obj,
996
+ });
997
+ export const ListContainerInstancesResponseFilterSensitiveLog = (obj) => ({
998
+ ...obj,
999
+ });
1000
+ export const ListServicesRequestFilterSensitiveLog = (obj) => ({
1001
+ ...obj,
1002
+ });
1003
+ export const ListServicesResponseFilterSensitiveLog = (obj) => ({
1004
+ ...obj,
1005
+ });
1006
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
1007
+ ...obj,
1008
+ });
1009
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
1010
+ ...obj,
1011
+ });
1012
+ export const ListTaskDefinitionFamiliesRequestFilterSensitiveLog = (obj) => ({
1013
+ ...obj,
1014
+ });
1015
+ export const ListTaskDefinitionFamiliesResponseFilterSensitiveLog = (obj) => ({
1016
+ ...obj,
1017
+ });
1018
+ export const ListTaskDefinitionsRequestFilterSensitiveLog = (obj) => ({
1019
+ ...obj,
1020
+ });
1021
+ export const ListTaskDefinitionsResponseFilterSensitiveLog = (obj) => ({
1022
+ ...obj,
1023
+ });
1024
+ export const ListTasksRequestFilterSensitiveLog = (obj) => ({
1025
+ ...obj,
1026
+ });
1027
+ export const ListTasksResponseFilterSensitiveLog = (obj) => ({
1028
+ ...obj,
1029
+ });
1030
+ export const PutAccountSettingRequestFilterSensitiveLog = (obj) => ({
1031
+ ...obj,
1032
+ });
1033
+ export const PutAccountSettingResponseFilterSensitiveLog = (obj) => ({
1034
+ ...obj,
1035
+ });
1036
+ export const PutAccountSettingDefaultRequestFilterSensitiveLog = (obj) => ({
1037
+ ...obj,
1038
+ });
1039
+ export const PutAccountSettingDefaultResponseFilterSensitiveLog = (obj) => ({
1040
+ ...obj,
1041
+ });
1042
+ export const PutAttributesRequestFilterSensitiveLog = (obj) => ({
1043
+ ...obj,
1044
+ });
1045
+ export const PutAttributesResponseFilterSensitiveLog = (obj) => ({
1046
+ ...obj,
1047
+ });
1048
+ export const PutClusterCapacityProvidersRequestFilterSensitiveLog = (obj) => ({
1049
+ ...obj,
1050
+ });
1051
+ export const PutClusterCapacityProvidersResponseFilterSensitiveLog = (obj) => ({
1052
+ ...obj,
1053
+ });
1054
+ export const PlatformDeviceFilterSensitiveLog = (obj) => ({
1055
+ ...obj,
1056
+ });
1057
+ export const RegisterContainerInstanceRequestFilterSensitiveLog = (obj) => ({
1058
+ ...obj,
1059
+ });
1060
+ export const RegisterContainerInstanceResponseFilterSensitiveLog = (obj) => ({
1061
+ ...obj,
1062
+ });
1063
+ export const RegisterTaskDefinitionRequestFilterSensitiveLog = (obj) => ({
1064
+ ...obj,
1065
+ });
1066
+ export const RegisterTaskDefinitionResponseFilterSensitiveLog = (obj) => ({
1067
+ ...obj,
1068
+ });
1069
+ export const RunTaskRequestFilterSensitiveLog = (obj) => ({
1070
+ ...obj,
1071
+ });
1072
+ export const RunTaskResponseFilterSensitiveLog = (obj) => ({
1073
+ ...obj,
1074
+ });
1075
+ export const StartTaskRequestFilterSensitiveLog = (obj) => ({
1076
+ ...obj,
1077
+ });
1078
+ export const StartTaskResponseFilterSensitiveLog = (obj) => ({
1079
+ ...obj,
1080
+ });
1081
+ export const StopTaskRequestFilterSensitiveLog = (obj) => ({
1082
+ ...obj,
1083
+ });
1084
+ export const StopTaskResponseFilterSensitiveLog = (obj) => ({
1085
+ ...obj,
1086
+ });
1087
+ export const AttachmentStateChangeFilterSensitiveLog = (obj) => ({
1088
+ ...obj,
1089
+ });
1090
+ export const SubmitAttachmentStateChangesRequestFilterSensitiveLog = (obj) => ({
1091
+ ...obj,
1092
+ });
1093
+ export const SubmitAttachmentStateChangesResponseFilterSensitiveLog = (obj) => ({
1094
+ ...obj,
1095
+ });
1096
+ export const SubmitContainerStateChangeRequestFilterSensitiveLog = (obj) => ({
1097
+ ...obj,
1098
+ });
1099
+ export const SubmitContainerStateChangeResponseFilterSensitiveLog = (obj) => ({
1100
+ ...obj,
1101
+ });
1102
+ export const ContainerStateChangeFilterSensitiveLog = (obj) => ({
1103
+ ...obj,
1104
+ });
1105
+ export const ManagedAgentStateChangeFilterSensitiveLog = (obj) => ({
1106
+ ...obj,
1107
+ });
1108
+ export const SubmitTaskStateChangeRequestFilterSensitiveLog = (obj) => ({
1109
+ ...obj,
1110
+ });
1111
+ export const SubmitTaskStateChangeResponseFilterSensitiveLog = (obj) => ({
1112
+ ...obj,
1113
+ });
1114
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
1115
+ ...obj,
1116
+ });
1117
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
1118
+ ...obj,
1119
+ });
1120
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
1121
+ ...obj,
1122
+ });
1123
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
1124
+ ...obj,
1125
+ });
1126
+ export const AutoScalingGroupProviderUpdateFilterSensitiveLog = (obj) => ({
1127
+ ...obj,
1128
+ });
1129
+ export const UpdateCapacityProviderRequestFilterSensitiveLog = (obj) => ({
1130
+ ...obj,
1131
+ });
1132
+ export const UpdateCapacityProviderResponseFilterSensitiveLog = (obj) => ({
1133
+ ...obj,
1134
+ });
1135
+ export const UpdateClusterRequestFilterSensitiveLog = (obj) => ({
1136
+ ...obj,
1137
+ });
1138
+ export const UpdateClusterResponseFilterSensitiveLog = (obj) => ({
1139
+ ...obj,
1140
+ });
1141
+ export const UpdateClusterSettingsRequestFilterSensitiveLog = (obj) => ({
1142
+ ...obj,
1143
+ });
1144
+ export const UpdateClusterSettingsResponseFilterSensitiveLog = (obj) => ({
1145
+ ...obj,
1146
+ });
1147
+ export const UpdateContainerAgentRequestFilterSensitiveLog = (obj) => ({
1148
+ ...obj,
1149
+ });
1150
+ export const UpdateContainerAgentResponseFilterSensitiveLog = (obj) => ({
1151
+ ...obj,
1152
+ });
1153
+ export const UpdateContainerInstancesStateRequestFilterSensitiveLog = (obj) => ({
1154
+ ...obj,
1155
+ });
1156
+ export const UpdateContainerInstancesStateResponseFilterSensitiveLog = (obj) => ({
1157
+ ...obj,
1158
+ });
1159
+ export const UpdateServiceRequestFilterSensitiveLog = (obj) => ({
1160
+ ...obj,
1161
+ });
1162
+ export const UpdateServiceResponseFilterSensitiveLog = (obj) => ({
1163
+ ...obj,
1164
+ });
1165
+ export const UpdateServicePrimaryTaskSetRequestFilterSensitiveLog = (obj) => ({
1166
+ ...obj,
1167
+ });
1168
+ export const UpdateServicePrimaryTaskSetResponseFilterSensitiveLog = (obj) => ({
1169
+ ...obj,
1170
+ });
1171
+ export const UpdateTaskSetRequestFilterSensitiveLog = (obj) => ({
1172
+ ...obj,
1173
+ });
1174
+ export const UpdateTaskSetResponseFilterSensitiveLog = (obj) => ({
1175
+ ...obj,
1176
+ });