@aws-sdk/client-eventbridge 3.186.0 → 3.190.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 (68) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/EventBridge.js +226 -233
  3. package/dist-es/EventBridgeClient.js +22 -28
  4. package/dist-es/commands/ActivateEventSourceCommand.js +22 -29
  5. package/dist-es/commands/CancelReplayCommand.js +21 -28
  6. package/dist-es/commands/CreateApiDestinationCommand.js +21 -28
  7. package/dist-es/commands/CreateArchiveCommand.js +21 -28
  8. package/dist-es/commands/CreateConnectionCommand.js +21 -28
  9. package/dist-es/commands/CreateEndpointCommand.js +21 -28
  10. package/dist-es/commands/CreateEventBusCommand.js +21 -28
  11. package/dist-es/commands/CreatePartnerEventSourceCommand.js +21 -28
  12. package/dist-es/commands/DeactivateEventSourceCommand.js +22 -29
  13. package/dist-es/commands/DeauthorizeConnectionCommand.js +21 -28
  14. package/dist-es/commands/DeleteApiDestinationCommand.js +21 -28
  15. package/dist-es/commands/DeleteArchiveCommand.js +21 -28
  16. package/dist-es/commands/DeleteConnectionCommand.js +21 -28
  17. package/dist-es/commands/DeleteEndpointCommand.js +21 -28
  18. package/dist-es/commands/DeleteEventBusCommand.js +22 -29
  19. package/dist-es/commands/DeletePartnerEventSourceCommand.js +22 -29
  20. package/dist-es/commands/DeleteRuleCommand.js +22 -29
  21. package/dist-es/commands/DescribeApiDestinationCommand.js +21 -28
  22. package/dist-es/commands/DescribeArchiveCommand.js +21 -28
  23. package/dist-es/commands/DescribeConnectionCommand.js +21 -28
  24. package/dist-es/commands/DescribeEndpointCommand.js +21 -28
  25. package/dist-es/commands/DescribeEventBusCommand.js +21 -28
  26. package/dist-es/commands/DescribeEventSourceCommand.js +21 -28
  27. package/dist-es/commands/DescribePartnerEventSourceCommand.js +21 -28
  28. package/dist-es/commands/DescribeReplayCommand.js +21 -28
  29. package/dist-es/commands/DescribeRuleCommand.js +21 -28
  30. package/dist-es/commands/DisableRuleCommand.js +22 -29
  31. package/dist-es/commands/EnableRuleCommand.js +22 -29
  32. package/dist-es/commands/ListApiDestinationsCommand.js +21 -28
  33. package/dist-es/commands/ListArchivesCommand.js +21 -28
  34. package/dist-es/commands/ListConnectionsCommand.js +21 -28
  35. package/dist-es/commands/ListEndpointsCommand.js +21 -28
  36. package/dist-es/commands/ListEventBusesCommand.js +21 -28
  37. package/dist-es/commands/ListEventSourcesCommand.js +21 -28
  38. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +21 -28
  39. package/dist-es/commands/ListPartnerEventSourcesCommand.js +21 -28
  40. package/dist-es/commands/ListReplaysCommand.js +21 -28
  41. package/dist-es/commands/ListRuleNamesByTargetCommand.js +21 -28
  42. package/dist-es/commands/ListRulesCommand.js +21 -28
  43. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  44. package/dist-es/commands/ListTargetsByRuleCommand.js +21 -28
  45. package/dist-es/commands/PutEventsCommand.js +21 -28
  46. package/dist-es/commands/PutPartnerEventsCommand.js +21 -28
  47. package/dist-es/commands/PutPermissionCommand.js +22 -29
  48. package/dist-es/commands/PutRuleCommand.js +21 -28
  49. package/dist-es/commands/PutTargetsCommand.js +21 -28
  50. package/dist-es/commands/RemovePermissionCommand.js +22 -29
  51. package/dist-es/commands/RemoveTargetsCommand.js +21 -28
  52. package/dist-es/commands/StartReplayCommand.js +21 -28
  53. package/dist-es/commands/TagResourceCommand.js +21 -28
  54. package/dist-es/commands/TestEventPatternCommand.js +21 -28
  55. package/dist-es/commands/UntagResourceCommand.js +21 -28
  56. package/dist-es/commands/UpdateApiDestinationCommand.js +21 -28
  57. package/dist-es/commands/UpdateArchiveCommand.js +21 -28
  58. package/dist-es/commands/UpdateConnectionCommand.js +21 -28
  59. package/dist-es/commands/UpdateEndpointCommand.js +21 -28
  60. package/dist-es/endpoints.js +8 -8
  61. package/dist-es/models/EventBridgeServiceException.js +5 -10
  62. package/dist-es/models/models_0.js +625 -290
  63. package/dist-es/protocols/Aws_json1_1.js +3868 -4754
  64. package/dist-es/runtimeConfig.browser.js +26 -12
  65. package/dist-es/runtimeConfig.js +30 -12
  66. package/dist-es/runtimeConfig.native.js +8 -5
  67. package/dist-es/runtimeConfig.shared.js +9 -12
  68. package/package.json +35 -35
@@ -1,65 +1,64 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
3
- var ConcurrentModificationException = (function (_super) {
4
- __extends(ConcurrentModificationException, _super);
5
- function ConcurrentModificationException(opts) {
6
- var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
7
- _this.name = "ConcurrentModificationException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
10
- return _this;
2
+ export class ConcurrentModificationException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "ConcurrentModificationException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "ConcurrentModificationException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
11
12
  }
12
- return ConcurrentModificationException;
13
- }(__BaseException));
14
- export { ConcurrentModificationException };
15
- var InternalException = (function (_super) {
16
- __extends(InternalException, _super);
17
- function InternalException(opts) {
18
- var _this = _super.call(this, __assign({ name: "InternalException", $fault: "server" }, opts)) || this;
19
- _this.name = "InternalException";
20
- _this.$fault = "server";
21
- Object.setPrototypeOf(_this, InternalException.prototype);
22
- return _this;
13
+ }
14
+ export class InternalException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "InternalException",
18
+ $fault: "server",
19
+ ...opts,
20
+ });
21
+ this.name = "InternalException";
22
+ this.$fault = "server";
23
+ Object.setPrototypeOf(this, InternalException.prototype);
23
24
  }
24
- return InternalException;
25
- }(__BaseException));
26
- export { InternalException };
27
- var InvalidStateException = (function (_super) {
28
- __extends(InvalidStateException, _super);
29
- function InvalidStateException(opts) {
30
- var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
31
- _this.name = "InvalidStateException";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, InvalidStateException.prototype);
34
- return _this;
25
+ }
26
+ export class InvalidStateException extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "InvalidStateException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "InvalidStateException";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, InvalidStateException.prototype);
35
36
  }
36
- return InvalidStateException;
37
- }(__BaseException));
38
- export { InvalidStateException };
39
- var OperationDisabledException = (function (_super) {
40
- __extends(OperationDisabledException, _super);
41
- function OperationDisabledException(opts) {
42
- var _this = _super.call(this, __assign({ name: "OperationDisabledException", $fault: "client" }, opts)) || this;
43
- _this.name = "OperationDisabledException";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, OperationDisabledException.prototype);
46
- return _this;
37
+ }
38
+ export class OperationDisabledException extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "OperationDisabledException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "OperationDisabledException";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, OperationDisabledException.prototype);
47
48
  }
48
- return OperationDisabledException;
49
- }(__BaseException));
50
- export { OperationDisabledException };
51
- var ResourceNotFoundException = (function (_super) {
52
- __extends(ResourceNotFoundException, _super);
53
- function ResourceNotFoundException(opts) {
54
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
55
- _this.name = "ResourceNotFoundException";
56
- _this.$fault = "client";
57
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
58
- return _this;
49
+ }
50
+ export class ResourceNotFoundException extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "ResourceNotFoundException",
54
+ $fault: "client",
55
+ ...opts,
56
+ });
57
+ this.name = "ResourceNotFoundException";
58
+ this.$fault = "client";
59
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
59
60
  }
60
- return ResourceNotFoundException;
61
- }(__BaseException));
62
- export { ResourceNotFoundException };
61
+ }
63
62
  export var ApiDestinationState;
64
63
  (function (ApiDestinationState) {
65
64
  ApiDestinationState["ACTIVE"] = "ACTIVE";
@@ -98,54 +97,54 @@ export var ReplayState;
98
97
  ReplayState["RUNNING"] = "RUNNING";
99
98
  ReplayState["STARTING"] = "STARTING";
100
99
  })(ReplayState || (ReplayState = {}));
101
- var IllegalStatusException = (function (_super) {
102
- __extends(IllegalStatusException, _super);
103
- function IllegalStatusException(opts) {
104
- var _this = _super.call(this, __assign({ name: "IllegalStatusException", $fault: "client" }, opts)) || this;
105
- _this.name = "IllegalStatusException";
106
- _this.$fault = "client";
107
- Object.setPrototypeOf(_this, IllegalStatusException.prototype);
108
- return _this;
100
+ export class IllegalStatusException extends __BaseException {
101
+ constructor(opts) {
102
+ super({
103
+ name: "IllegalStatusException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ this.name = "IllegalStatusException";
108
+ this.$fault = "client";
109
+ Object.setPrototypeOf(this, IllegalStatusException.prototype);
109
110
  }
110
- return IllegalStatusException;
111
- }(__BaseException));
112
- export { IllegalStatusException };
113
- var LimitExceededException = (function (_super) {
114
- __extends(LimitExceededException, _super);
115
- function LimitExceededException(opts) {
116
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
117
- _this.name = "LimitExceededException";
118
- _this.$fault = "client";
119
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
120
- return _this;
111
+ }
112
+ export class LimitExceededException extends __BaseException {
113
+ constructor(opts) {
114
+ super({
115
+ name: "LimitExceededException",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ this.name = "LimitExceededException";
120
+ this.$fault = "client";
121
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
121
122
  }
122
- return LimitExceededException;
123
- }(__BaseException));
124
- export { LimitExceededException };
125
- var ResourceAlreadyExistsException = (function (_super) {
126
- __extends(ResourceAlreadyExistsException, _super);
127
- function ResourceAlreadyExistsException(opts) {
128
- var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
129
- _this.name = "ResourceAlreadyExistsException";
130
- _this.$fault = "client";
131
- Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
132
- return _this;
123
+ }
124
+ export class ResourceAlreadyExistsException extends __BaseException {
125
+ constructor(opts) {
126
+ super({
127
+ name: "ResourceAlreadyExistsException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ this.name = "ResourceAlreadyExistsException";
132
+ this.$fault = "client";
133
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
133
134
  }
134
- return ResourceAlreadyExistsException;
135
- }(__BaseException));
136
- export { ResourceAlreadyExistsException };
137
- var InvalidEventPatternException = (function (_super) {
138
- __extends(InvalidEventPatternException, _super);
139
- function InvalidEventPatternException(opts) {
140
- var _this = _super.call(this, __assign({ name: "InvalidEventPatternException", $fault: "client" }, opts)) || this;
141
- _this.name = "InvalidEventPatternException";
142
- _this.$fault = "client";
143
- Object.setPrototypeOf(_this, InvalidEventPatternException.prototype);
144
- return _this;
135
+ }
136
+ export class InvalidEventPatternException extends __BaseException {
137
+ constructor(opts) {
138
+ super({
139
+ name: "InvalidEventPatternException",
140
+ $fault: "client",
141
+ ...opts,
142
+ });
143
+ this.name = "InvalidEventPatternException";
144
+ this.$fault = "client";
145
+ Object.setPrototypeOf(this, InvalidEventPatternException.prototype);
145
146
  }
146
- return InvalidEventPatternException;
147
- }(__BaseException));
148
- export { InvalidEventPatternException };
147
+ }
149
148
  export var ConnectionAuthorizationType;
150
149
  (function (ConnectionAuthorizationType) {
151
150
  ConnectionAuthorizationType["API_KEY"] = "API_KEY";
@@ -183,18 +182,18 @@ export var EndpointState;
183
182
  EndpointState["UPDATE_FAILED"] = "UPDATE_FAILED";
184
183
  EndpointState["UPDATING"] = "UPDATING";
185
184
  })(EndpointState || (EndpointState = {}));
186
- var ManagedRuleException = (function (_super) {
187
- __extends(ManagedRuleException, _super);
188
- function ManagedRuleException(opts) {
189
- var _this = _super.call(this, __assign({ name: "ManagedRuleException", $fault: "client" }, opts)) || this;
190
- _this.name = "ManagedRuleException";
191
- _this.$fault = "client";
192
- Object.setPrototypeOf(_this, ManagedRuleException.prototype);
193
- return _this;
185
+ export class ManagedRuleException extends __BaseException {
186
+ constructor(opts) {
187
+ super({
188
+ name: "ManagedRuleException",
189
+ $fault: "client",
190
+ ...opts,
191
+ });
192
+ this.name = "ManagedRuleException";
193
+ this.$fault = "client";
194
+ Object.setPrototypeOf(this, ManagedRuleException.prototype);
194
195
  }
195
- return ManagedRuleException;
196
- }(__BaseException));
197
- export { ManagedRuleException };
196
+ }
198
197
  export var EventSourceState;
199
198
  (function (EventSourceState) {
200
199
  EventSourceState["ACTIVE"] = "ACTIVE";
@@ -227,183 +226,519 @@ export var PropagateTags;
227
226
  (function (PropagateTags) {
228
227
  PropagateTags["TASK_DEFINITION"] = "TASK_DEFINITION";
229
228
  })(PropagateTags || (PropagateTags = {}));
230
- var PolicyLengthExceededException = (function (_super) {
231
- __extends(PolicyLengthExceededException, _super);
232
- function PolicyLengthExceededException(opts) {
233
- var _this = _super.call(this, __assign({ name: "PolicyLengthExceededException", $fault: "client" }, opts)) || this;
234
- _this.name = "PolicyLengthExceededException";
235
- _this.$fault = "client";
236
- Object.setPrototypeOf(_this, PolicyLengthExceededException.prototype);
237
- return _this;
229
+ export class PolicyLengthExceededException extends __BaseException {
230
+ constructor(opts) {
231
+ super({
232
+ name: "PolicyLengthExceededException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ this.name = "PolicyLengthExceededException";
237
+ this.$fault = "client";
238
+ Object.setPrototypeOf(this, PolicyLengthExceededException.prototype);
238
239
  }
239
- return PolicyLengthExceededException;
240
- }(__BaseException));
241
- export { PolicyLengthExceededException };
242
- export var ActivateEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var ApiDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var ArchiveFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var CancelReplayRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var CancelReplayResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var CreateApiDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var CreateApiDestinationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var CreateArchiveRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var CreateArchiveResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var CreateConnectionApiKeyAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var CreateConnectionBasicAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var ConnectionBodyParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var ConnectionHeaderParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var ConnectionQueryStringParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var ConnectionHttpParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var CreateConnectionOAuthClientRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var CreateConnectionOAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var CreateConnectionAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var CreateConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var CreateConnectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var EndpointEventBusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var ReplicationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var PrimaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var SecondaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var FailoverConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var RoutingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var CreateEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var CreateEndpointResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var CreateEventBusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var CreateEventBusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var CreatePartnerEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var CreatePartnerEventSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var DeactivateEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var DeauthorizeConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var DeauthorizeConnectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var DeleteApiDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var DeleteApiDestinationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var DeleteArchiveRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var DeleteArchiveResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var DeleteConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var DeleteConnectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var DeleteEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var DeleteEndpointResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var DeleteEventBusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var DeletePartnerEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var DeleteRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var DescribeApiDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var DescribeApiDestinationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var DescribeArchiveRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var DescribeArchiveResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var DescribeConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var ConnectionApiKeyAuthResponseParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var ConnectionBasicAuthResponseParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var ConnectionOAuthClientResponseParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var ConnectionOAuthResponseParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var ConnectionAuthResponseParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var DescribeConnectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var DescribeEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var DescribeEndpointResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var DescribeEventBusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var DescribeEventBusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var DescribeEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var DescribeEventSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var DescribePartnerEventSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var DescribePartnerEventSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var DescribeReplayRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var ReplayDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var DescribeReplayResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var DescribeRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var DescribeRuleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var DisableRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var EnableRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var ListApiDestinationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var ListApiDestinationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var ListArchivesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var ListArchivesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var ListConnectionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var ConnectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var ListConnectionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var ListEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var EndpointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var ListEndpointsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var ListEventBusesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var EventBusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var ListEventBusesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var ListEventSourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var EventSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var ListEventSourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var ListPartnerEventSourceAccountsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var PartnerEventSourceAccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var ListPartnerEventSourceAccountsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var ListPartnerEventSourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var PartnerEventSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var ListPartnerEventSourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var ListReplaysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var ReplayFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var ListReplaysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var ListRuleNamesByTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var ListRuleNamesByTargetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var ListRulesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var RuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var ListRulesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var ListTargetsByRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var BatchArrayPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var BatchRetryStrategyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var BatchParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var DeadLetterConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var CapacityProviderStrategyItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var AwsVpcConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var NetworkConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var PlacementConstraintFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var PlacementStrategyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var EcsParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var HttpParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var InputTransformerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var KinesisParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var RedshiftDataParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var RetryPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var RunCommandTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var RunCommandParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var SageMakerPipelineParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var SageMakerPipelineParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var SqsParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var TargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var ListTargetsByRuleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var PutEventsRequestEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var PutEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var PutEventsResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var PutEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var PutPartnerEventsRequestEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var PutPartnerEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var PutPartnerEventsResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var PutPartnerEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var ConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var PutPermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var PutRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var PutRuleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var PutTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var PutTargetsResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var PutTargetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var RemovePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var RemoveTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var RemoveTargetsResultEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var RemoveTargetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var StartReplayRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var StartReplayResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
- export var TestEventPatternRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
- export var TestEventPatternResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
395
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
396
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
- export var UpdateApiDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- export var UpdateApiDestinationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
- export var UpdateArchiveRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
- export var UpdateArchiveResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
- export var UpdateConnectionApiKeyAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
402
- export var UpdateConnectionBasicAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
403
- export var UpdateConnectionOAuthClientRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
- export var UpdateConnectionOAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
405
- export var UpdateConnectionAuthRequestParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
- export var UpdateConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
- export var UpdateConnectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
- export var UpdateEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
- export var UpdateEndpointResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
+ }
241
+ export const ActivateEventSourceRequestFilterSensitiveLog = (obj) => ({
242
+ ...obj,
243
+ });
244
+ export const ApiDestinationFilterSensitiveLog = (obj) => ({
245
+ ...obj,
246
+ });
247
+ export const ArchiveFilterSensitiveLog = (obj) => ({
248
+ ...obj,
249
+ });
250
+ export const CancelReplayRequestFilterSensitiveLog = (obj) => ({
251
+ ...obj,
252
+ });
253
+ export const CancelReplayResponseFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ });
256
+ export const CreateApiDestinationRequestFilterSensitiveLog = (obj) => ({
257
+ ...obj,
258
+ });
259
+ export const CreateApiDestinationResponseFilterSensitiveLog = (obj) => ({
260
+ ...obj,
261
+ });
262
+ export const CreateArchiveRequestFilterSensitiveLog = (obj) => ({
263
+ ...obj,
264
+ });
265
+ export const CreateArchiveResponseFilterSensitiveLog = (obj) => ({
266
+ ...obj,
267
+ });
268
+ export const CreateConnectionApiKeyAuthRequestParametersFilterSensitiveLog = (obj) => ({
269
+ ...obj,
270
+ });
271
+ export const CreateConnectionBasicAuthRequestParametersFilterSensitiveLog = (obj) => ({
272
+ ...obj,
273
+ });
274
+ export const ConnectionBodyParameterFilterSensitiveLog = (obj) => ({
275
+ ...obj,
276
+ });
277
+ export const ConnectionHeaderParameterFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ });
280
+ export const ConnectionQueryStringParameterFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ });
283
+ export const ConnectionHttpParametersFilterSensitiveLog = (obj) => ({
284
+ ...obj,
285
+ });
286
+ export const CreateConnectionOAuthClientRequestParametersFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const CreateConnectionOAuthRequestParametersFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const CreateConnectionAuthRequestParametersFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const CreateConnectionRequestFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const CreateConnectionResponseFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ });
301
+ export const EndpointEventBusFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ });
304
+ export const ReplicationConfigFilterSensitiveLog = (obj) => ({
305
+ ...obj,
306
+ });
307
+ export const PrimaryFilterSensitiveLog = (obj) => ({
308
+ ...obj,
309
+ });
310
+ export const SecondaryFilterSensitiveLog = (obj) => ({
311
+ ...obj,
312
+ });
313
+ export const FailoverConfigFilterSensitiveLog = (obj) => ({
314
+ ...obj,
315
+ });
316
+ export const RoutingConfigFilterSensitiveLog = (obj) => ({
317
+ ...obj,
318
+ });
319
+ export const CreateEndpointRequestFilterSensitiveLog = (obj) => ({
320
+ ...obj,
321
+ });
322
+ export const CreateEndpointResponseFilterSensitiveLog = (obj) => ({
323
+ ...obj,
324
+ });
325
+ export const TagFilterSensitiveLog = (obj) => ({
326
+ ...obj,
327
+ });
328
+ export const CreateEventBusRequestFilterSensitiveLog = (obj) => ({
329
+ ...obj,
330
+ });
331
+ export const CreateEventBusResponseFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ });
334
+ export const CreatePartnerEventSourceRequestFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ });
337
+ export const CreatePartnerEventSourceResponseFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ });
340
+ export const DeactivateEventSourceRequestFilterSensitiveLog = (obj) => ({
341
+ ...obj,
342
+ });
343
+ export const DeauthorizeConnectionRequestFilterSensitiveLog = (obj) => ({
344
+ ...obj,
345
+ });
346
+ export const DeauthorizeConnectionResponseFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ });
349
+ export const DeleteApiDestinationRequestFilterSensitiveLog = (obj) => ({
350
+ ...obj,
351
+ });
352
+ export const DeleteApiDestinationResponseFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ });
355
+ export const DeleteArchiveRequestFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ });
358
+ export const DeleteArchiveResponseFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ });
361
+ export const DeleteConnectionRequestFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ });
364
+ export const DeleteConnectionResponseFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ });
367
+ export const DeleteEndpointRequestFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const DeleteEndpointResponseFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const DeleteEventBusRequestFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const DeletePartnerEventSourceRequestFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ });
379
+ export const DeleteRuleRequestFilterSensitiveLog = (obj) => ({
380
+ ...obj,
381
+ });
382
+ export const DescribeApiDestinationRequestFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ export const DescribeApiDestinationResponseFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const DescribeArchiveRequestFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const DescribeArchiveResponseFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const DescribeConnectionRequestFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const ConnectionApiKeyAuthResponseParametersFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const ConnectionBasicAuthResponseParametersFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const ConnectionOAuthClientResponseParametersFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const ConnectionOAuthResponseParametersFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const ConnectionAuthResponseParametersFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const DescribeConnectionResponseFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const DescribeEndpointRequestFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const DescribeEndpointResponseFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const DescribeEventBusRequestFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ export const DescribeEventBusResponseFilterSensitiveLog = (obj) => ({
425
+ ...obj,
426
+ });
427
+ export const DescribeEventSourceRequestFilterSensitiveLog = (obj) => ({
428
+ ...obj,
429
+ });
430
+ export const DescribeEventSourceResponseFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const DescribePartnerEventSourceRequestFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const DescribePartnerEventSourceResponseFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const DescribeReplayRequestFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const ReplayDestinationFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const DescribeReplayResponseFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });
448
+ export const DescribeRuleRequestFilterSensitiveLog = (obj) => ({
449
+ ...obj,
450
+ });
451
+ export const DescribeRuleResponseFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ });
454
+ export const DisableRuleRequestFilterSensitiveLog = (obj) => ({
455
+ ...obj,
456
+ });
457
+ export const EnableRuleRequestFilterSensitiveLog = (obj) => ({
458
+ ...obj,
459
+ });
460
+ export const ListApiDestinationsRequestFilterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ });
463
+ export const ListApiDestinationsResponseFilterSensitiveLog = (obj) => ({
464
+ ...obj,
465
+ });
466
+ export const ListArchivesRequestFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ });
469
+ export const ListArchivesResponseFilterSensitiveLog = (obj) => ({
470
+ ...obj,
471
+ });
472
+ export const ListConnectionsRequestFilterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ export const ConnectionFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ });
478
+ export const ListConnectionsResponseFilterSensitiveLog = (obj) => ({
479
+ ...obj,
480
+ });
481
+ export const ListEndpointsRequestFilterSensitiveLog = (obj) => ({
482
+ ...obj,
483
+ });
484
+ export const EndpointFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ });
487
+ export const ListEndpointsResponseFilterSensitiveLog = (obj) => ({
488
+ ...obj,
489
+ });
490
+ export const ListEventBusesRequestFilterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ export const EventBusFilterSensitiveLog = (obj) => ({
494
+ ...obj,
495
+ });
496
+ export const ListEventBusesResponseFilterSensitiveLog = (obj) => ({
497
+ ...obj,
498
+ });
499
+ export const ListEventSourcesRequestFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const EventSourceFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });
505
+ export const ListEventSourcesResponseFilterSensitiveLog = (obj) => ({
506
+ ...obj,
507
+ });
508
+ export const ListPartnerEventSourceAccountsRequestFilterSensitiveLog = (obj) => ({
509
+ ...obj,
510
+ });
511
+ export const PartnerEventSourceAccountFilterSensitiveLog = (obj) => ({
512
+ ...obj,
513
+ });
514
+ export const ListPartnerEventSourceAccountsResponseFilterSensitiveLog = (obj) => ({
515
+ ...obj,
516
+ });
517
+ export const ListPartnerEventSourcesRequestFilterSensitiveLog = (obj) => ({
518
+ ...obj,
519
+ });
520
+ export const PartnerEventSourceFilterSensitiveLog = (obj) => ({
521
+ ...obj,
522
+ });
523
+ export const ListPartnerEventSourcesResponseFilterSensitiveLog = (obj) => ({
524
+ ...obj,
525
+ });
526
+ export const ListReplaysRequestFilterSensitiveLog = (obj) => ({
527
+ ...obj,
528
+ });
529
+ export const ReplayFilterSensitiveLog = (obj) => ({
530
+ ...obj,
531
+ });
532
+ export const ListReplaysResponseFilterSensitiveLog = (obj) => ({
533
+ ...obj,
534
+ });
535
+ export const ListRuleNamesByTargetRequestFilterSensitiveLog = (obj) => ({
536
+ ...obj,
537
+ });
538
+ export const ListRuleNamesByTargetResponseFilterSensitiveLog = (obj) => ({
539
+ ...obj,
540
+ });
541
+ export const ListRulesRequestFilterSensitiveLog = (obj) => ({
542
+ ...obj,
543
+ });
544
+ export const RuleFilterSensitiveLog = (obj) => ({
545
+ ...obj,
546
+ });
547
+ export const ListRulesResponseFilterSensitiveLog = (obj) => ({
548
+ ...obj,
549
+ });
550
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
551
+ ...obj,
552
+ });
553
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
554
+ ...obj,
555
+ });
556
+ export const ListTargetsByRuleRequestFilterSensitiveLog = (obj) => ({
557
+ ...obj,
558
+ });
559
+ export const BatchArrayPropertiesFilterSensitiveLog = (obj) => ({
560
+ ...obj,
561
+ });
562
+ export const BatchRetryStrategyFilterSensitiveLog = (obj) => ({
563
+ ...obj,
564
+ });
565
+ export const BatchParametersFilterSensitiveLog = (obj) => ({
566
+ ...obj,
567
+ });
568
+ export const DeadLetterConfigFilterSensitiveLog = (obj) => ({
569
+ ...obj,
570
+ });
571
+ export const CapacityProviderStrategyItemFilterSensitiveLog = (obj) => ({
572
+ ...obj,
573
+ });
574
+ export const AwsVpcConfigurationFilterSensitiveLog = (obj) => ({
575
+ ...obj,
576
+ });
577
+ export const NetworkConfigurationFilterSensitiveLog = (obj) => ({
578
+ ...obj,
579
+ });
580
+ export const PlacementConstraintFilterSensitiveLog = (obj) => ({
581
+ ...obj,
582
+ });
583
+ export const PlacementStrategyFilterSensitiveLog = (obj) => ({
584
+ ...obj,
585
+ });
586
+ export const EcsParametersFilterSensitiveLog = (obj) => ({
587
+ ...obj,
588
+ });
589
+ export const HttpParametersFilterSensitiveLog = (obj) => ({
590
+ ...obj,
591
+ });
592
+ export const InputTransformerFilterSensitiveLog = (obj) => ({
593
+ ...obj,
594
+ });
595
+ export const KinesisParametersFilterSensitiveLog = (obj) => ({
596
+ ...obj,
597
+ });
598
+ export const RedshiftDataParametersFilterSensitiveLog = (obj) => ({
599
+ ...obj,
600
+ });
601
+ export const RetryPolicyFilterSensitiveLog = (obj) => ({
602
+ ...obj,
603
+ });
604
+ export const RunCommandTargetFilterSensitiveLog = (obj) => ({
605
+ ...obj,
606
+ });
607
+ export const RunCommandParametersFilterSensitiveLog = (obj) => ({
608
+ ...obj,
609
+ });
610
+ export const SageMakerPipelineParameterFilterSensitiveLog = (obj) => ({
611
+ ...obj,
612
+ });
613
+ export const SageMakerPipelineParametersFilterSensitiveLog = (obj) => ({
614
+ ...obj,
615
+ });
616
+ export const SqsParametersFilterSensitiveLog = (obj) => ({
617
+ ...obj,
618
+ });
619
+ export const TargetFilterSensitiveLog = (obj) => ({
620
+ ...obj,
621
+ });
622
+ export const ListTargetsByRuleResponseFilterSensitiveLog = (obj) => ({
623
+ ...obj,
624
+ });
625
+ export const PutEventsRequestEntryFilterSensitiveLog = (obj) => ({
626
+ ...obj,
627
+ });
628
+ export const PutEventsRequestFilterSensitiveLog = (obj) => ({
629
+ ...obj,
630
+ });
631
+ export const PutEventsResultEntryFilterSensitiveLog = (obj) => ({
632
+ ...obj,
633
+ });
634
+ export const PutEventsResponseFilterSensitiveLog = (obj) => ({
635
+ ...obj,
636
+ });
637
+ export const PutPartnerEventsRequestEntryFilterSensitiveLog = (obj) => ({
638
+ ...obj,
639
+ });
640
+ export const PutPartnerEventsRequestFilterSensitiveLog = (obj) => ({
641
+ ...obj,
642
+ });
643
+ export const PutPartnerEventsResultEntryFilterSensitiveLog = (obj) => ({
644
+ ...obj,
645
+ });
646
+ export const PutPartnerEventsResponseFilterSensitiveLog = (obj) => ({
647
+ ...obj,
648
+ });
649
+ export const ConditionFilterSensitiveLog = (obj) => ({
650
+ ...obj,
651
+ });
652
+ export const PutPermissionRequestFilterSensitiveLog = (obj) => ({
653
+ ...obj,
654
+ });
655
+ export const PutRuleRequestFilterSensitiveLog = (obj) => ({
656
+ ...obj,
657
+ });
658
+ export const PutRuleResponseFilterSensitiveLog = (obj) => ({
659
+ ...obj,
660
+ });
661
+ export const PutTargetsRequestFilterSensitiveLog = (obj) => ({
662
+ ...obj,
663
+ });
664
+ export const PutTargetsResultEntryFilterSensitiveLog = (obj) => ({
665
+ ...obj,
666
+ });
667
+ export const PutTargetsResponseFilterSensitiveLog = (obj) => ({
668
+ ...obj,
669
+ });
670
+ export const RemovePermissionRequestFilterSensitiveLog = (obj) => ({
671
+ ...obj,
672
+ });
673
+ export const RemoveTargetsRequestFilterSensitiveLog = (obj) => ({
674
+ ...obj,
675
+ });
676
+ export const RemoveTargetsResultEntryFilterSensitiveLog = (obj) => ({
677
+ ...obj,
678
+ });
679
+ export const RemoveTargetsResponseFilterSensitiveLog = (obj) => ({
680
+ ...obj,
681
+ });
682
+ export const StartReplayRequestFilterSensitiveLog = (obj) => ({
683
+ ...obj,
684
+ });
685
+ export const StartReplayResponseFilterSensitiveLog = (obj) => ({
686
+ ...obj,
687
+ });
688
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
689
+ ...obj,
690
+ });
691
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
692
+ ...obj,
693
+ });
694
+ export const TestEventPatternRequestFilterSensitiveLog = (obj) => ({
695
+ ...obj,
696
+ });
697
+ export const TestEventPatternResponseFilterSensitiveLog = (obj) => ({
698
+ ...obj,
699
+ });
700
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
701
+ ...obj,
702
+ });
703
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
704
+ ...obj,
705
+ });
706
+ export const UpdateApiDestinationRequestFilterSensitiveLog = (obj) => ({
707
+ ...obj,
708
+ });
709
+ export const UpdateApiDestinationResponseFilterSensitiveLog = (obj) => ({
710
+ ...obj,
711
+ });
712
+ export const UpdateArchiveRequestFilterSensitiveLog = (obj) => ({
713
+ ...obj,
714
+ });
715
+ export const UpdateArchiveResponseFilterSensitiveLog = (obj) => ({
716
+ ...obj,
717
+ });
718
+ export const UpdateConnectionApiKeyAuthRequestParametersFilterSensitiveLog = (obj) => ({
719
+ ...obj,
720
+ });
721
+ export const UpdateConnectionBasicAuthRequestParametersFilterSensitiveLog = (obj) => ({
722
+ ...obj,
723
+ });
724
+ export const UpdateConnectionOAuthClientRequestParametersFilterSensitiveLog = (obj) => ({
725
+ ...obj,
726
+ });
727
+ export const UpdateConnectionOAuthRequestParametersFilterSensitiveLog = (obj) => ({
728
+ ...obj,
729
+ });
730
+ export const UpdateConnectionAuthRequestParametersFilterSensitiveLog = (obj) => ({
731
+ ...obj,
732
+ });
733
+ export const UpdateConnectionRequestFilterSensitiveLog = (obj) => ({
734
+ ...obj,
735
+ });
736
+ export const UpdateConnectionResponseFilterSensitiveLog = (obj) => ({
737
+ ...obj,
738
+ });
739
+ export const UpdateEndpointRequestFilterSensitiveLog = (obj) => ({
740
+ ...obj,
741
+ });
742
+ export const UpdateEndpointResponseFilterSensitiveLog = (obj) => ({
743
+ ...obj,
744
+ });