@aws-sdk/client-ssm-incidents 3.181.0 → 3.183.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 (49) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/SSMIncidents.js +118 -125
  3. package/dist-es/SSMIncidentsClient.js +22 -28
  4. package/dist-es/commands/CreateReplicationSetCommand.js +21 -28
  5. package/dist-es/commands/CreateResponsePlanCommand.js +21 -28
  6. package/dist-es/commands/CreateTimelineEventCommand.js +21 -28
  7. package/dist-es/commands/DeleteIncidentRecordCommand.js +21 -28
  8. package/dist-es/commands/DeleteReplicationSetCommand.js +21 -28
  9. package/dist-es/commands/DeleteResourcePolicyCommand.js +21 -28
  10. package/dist-es/commands/DeleteResponsePlanCommand.js +21 -28
  11. package/dist-es/commands/DeleteTimelineEventCommand.js +21 -28
  12. package/dist-es/commands/GetIncidentRecordCommand.js +21 -28
  13. package/dist-es/commands/GetReplicationSetCommand.js +21 -28
  14. package/dist-es/commands/GetResourcePoliciesCommand.js +21 -28
  15. package/dist-es/commands/GetResponsePlanCommand.js +21 -28
  16. package/dist-es/commands/GetTimelineEventCommand.js +21 -28
  17. package/dist-es/commands/ListIncidentRecordsCommand.js +21 -28
  18. package/dist-es/commands/ListRelatedItemsCommand.js +21 -28
  19. package/dist-es/commands/ListReplicationSetsCommand.js +21 -28
  20. package/dist-es/commands/ListResponsePlansCommand.js +21 -28
  21. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  22. package/dist-es/commands/ListTimelineEventsCommand.js +21 -28
  23. package/dist-es/commands/PutResourcePolicyCommand.js +21 -28
  24. package/dist-es/commands/StartIncidentCommand.js +21 -28
  25. package/dist-es/commands/TagResourceCommand.js +21 -28
  26. package/dist-es/commands/UntagResourceCommand.js +21 -28
  27. package/dist-es/commands/UpdateDeletionProtectionCommand.js +21 -28
  28. package/dist-es/commands/UpdateIncidentRecordCommand.js +21 -28
  29. package/dist-es/commands/UpdateRelatedItemsCommand.js +21 -28
  30. package/dist-es/commands/UpdateReplicationSetCommand.js +21 -28
  31. package/dist-es/commands/UpdateResponsePlanCommand.js +21 -28
  32. package/dist-es/commands/UpdateTimelineEventCommand.js +21 -28
  33. package/dist-es/endpoints.js +8 -8
  34. package/dist-es/models/SSMIncidentsServiceException.js +5 -10
  35. package/dist-es/models/models_0.js +389 -223
  36. package/dist-es/pagination/GetResourcePoliciesPaginator.js +25 -68
  37. package/dist-es/pagination/ListIncidentRecordsPaginator.js +25 -68
  38. package/dist-es/pagination/ListRelatedItemsPaginator.js +25 -68
  39. package/dist-es/pagination/ListReplicationSetsPaginator.js +25 -68
  40. package/dist-es/pagination/ListResponsePlansPaginator.js +25 -68
  41. package/dist-es/pagination/ListTimelineEventsPaginator.js +25 -68
  42. package/dist-es/protocols/Aws_restJson1.js +2327 -3142
  43. package/dist-es/runtimeConfig.browser.js +26 -12
  44. package/dist-es/runtimeConfig.js +30 -12
  45. package/dist-es/runtimeConfig.native.js +8 -5
  46. package/dist-es/runtimeConfig.shared.js +8 -11
  47. package/dist-es/waiters/waitForWaitForReplicationSetActive.js +54 -74
  48. package/dist-es/waiters/waitForWaitForReplicationSetDeleted.js +39 -59
  49. package/package.json +34 -34
@@ -1,17 +1,16 @@
1
- import { __assign, __extends, __read } from "tslib";
2
1
  import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
3
- var AccessDeniedException = (function (_super) {
4
- __extends(AccessDeniedException, _super);
5
- function AccessDeniedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessDeniedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
- return _this;
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
11
12
  }
12
- return AccessDeniedException;
13
- }(__BaseException));
14
- export { AccessDeniedException };
13
+ }
15
14
  export var VariableType;
16
15
  (function (VariableType) {
17
16
  VariableType["INCIDENT_RECORD_ARN"] = "INCIDENT_RECORD_ARN";
@@ -19,7 +18,7 @@ export var VariableType;
19
18
  })(VariableType || (VariableType = {}));
20
19
  export var DynamicSsmParameterValue;
21
20
  (function (DynamicSsmParameterValue) {
22
- DynamicSsmParameterValue.visit = function (value, visitor) {
21
+ DynamicSsmParameterValue.visit = (value, visitor) => {
23
22
  if (value.variable !== undefined)
24
23
  return visitor.variable(value.variable);
25
24
  return visitor._(value.$unknown[0], value.$unknown[1]);
@@ -32,7 +31,7 @@ export var SsmTargetAccount;
32
31
  })(SsmTargetAccount || (SsmTargetAccount = {}));
33
32
  export var Action;
34
33
  (function (Action) {
35
- Action.visit = function (value, visitor) {
34
+ Action.visit = (value, visitor) => {
36
35
  if (value.ssmAutomation !== undefined)
37
36
  return visitor.ssmAutomation(value.ssmAutomation);
38
37
  return visitor._(value.$unknown[0], value.$unknown[1]);
@@ -40,7 +39,7 @@ export var Action;
40
39
  })(Action || (Action = {}));
41
40
  export var AttributeValueList;
42
41
  (function (AttributeValueList) {
43
- AttributeValueList.visit = function (value, visitor) {
42
+ AttributeValueList.visit = (value, visitor) => {
44
43
  if (value.stringValues !== undefined)
45
44
  return visitor.stringValues(value.stringValues);
46
45
  if (value.integerValues !== undefined)
@@ -50,7 +49,7 @@ export var AttributeValueList;
50
49
  })(AttributeValueList || (AttributeValueList = {}));
51
50
  export var AutomationExecution;
52
51
  (function (AutomationExecution) {
53
- AutomationExecution.visit = function (value, visitor) {
52
+ AutomationExecution.visit = (value, visitor) => {
54
53
  if (value.ssmExecutionArn !== undefined)
55
54
  return visitor.ssmExecutionArn(value.ssmExecutionArn);
56
55
  return visitor._(value.$unknown[0], value.$unknown[1]);
@@ -58,7 +57,7 @@ export var AutomationExecution;
58
57
  })(AutomationExecution || (AutomationExecution = {}));
59
58
  export var ChatChannel;
60
59
  (function (ChatChannel) {
61
- ChatChannel.visit = function (value, visitor) {
60
+ ChatChannel.visit = (value, visitor) => {
62
61
  if (value.empty !== undefined)
63
62
  return visitor.empty(value.empty);
64
63
  if (value.chatbotSns !== undefined)
@@ -68,7 +67,7 @@ export var ChatChannel;
68
67
  })(ChatChannel || (ChatChannel = {}));
69
68
  export var Condition;
70
69
  (function (Condition) {
71
- Condition.visit = function (value, visitor) {
70
+ Condition.visit = (value, visitor) => {
72
71
  if (value.before !== undefined)
73
72
  return visitor.before(value.before);
74
73
  if (value.after !== undefined)
@@ -86,101 +85,101 @@ export var ResourceType;
86
85
  ResourceType["RESPONSE_PLAN"] = "RESPONSE_PLAN";
87
86
  ResourceType["TIMELINE_EVENT"] = "TIMELINE_EVENT";
88
87
  })(ResourceType || (ResourceType = {}));
89
- var ConflictException = (function (_super) {
90
- __extends(ConflictException, _super);
91
- function ConflictException(opts) {
92
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
93
- _this.name = "ConflictException";
94
- _this.$fault = "client";
95
- Object.setPrototypeOf(_this, ConflictException.prototype);
96
- _this.resourceIdentifier = opts.resourceIdentifier;
97
- _this.resourceType = opts.resourceType;
98
- _this.retryAfter = opts.retryAfter;
99
- return _this;
88
+ export class ConflictException extends __BaseException {
89
+ constructor(opts) {
90
+ super({
91
+ name: "ConflictException",
92
+ $fault: "client",
93
+ ...opts,
94
+ });
95
+ this.name = "ConflictException";
96
+ this.$fault = "client";
97
+ Object.setPrototypeOf(this, ConflictException.prototype);
98
+ this.resourceIdentifier = opts.resourceIdentifier;
99
+ this.resourceType = opts.resourceType;
100
+ this.retryAfter = opts.retryAfter;
100
101
  }
101
- return ConflictException;
102
- }(__BaseException));
103
- export { ConflictException };
104
- var InternalServerException = (function (_super) {
105
- __extends(InternalServerException, _super);
106
- function InternalServerException(opts) {
107
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
108
- _this.name = "InternalServerException";
109
- _this.$fault = "server";
110
- Object.setPrototypeOf(_this, InternalServerException.prototype);
111
- return _this;
102
+ }
103
+ export class InternalServerException extends __BaseException {
104
+ constructor(opts) {
105
+ super({
106
+ name: "InternalServerException",
107
+ $fault: "server",
108
+ ...opts,
109
+ });
110
+ this.name = "InternalServerException";
111
+ this.$fault = "server";
112
+ Object.setPrototypeOf(this, InternalServerException.prototype);
112
113
  }
113
- return InternalServerException;
114
- }(__BaseException));
115
- export { InternalServerException };
114
+ }
116
115
  export var ServiceCode;
117
116
  (function (ServiceCode) {
118
117
  ServiceCode["SSM_INCIDENTS"] = "ssm-incidents";
119
118
  })(ServiceCode || (ServiceCode = {}));
120
- var ServiceQuotaExceededException = (function (_super) {
121
- __extends(ServiceQuotaExceededException, _super);
122
- function ServiceQuotaExceededException(opts) {
123
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
124
- _this.name = "ServiceQuotaExceededException";
125
- _this.$fault = "client";
126
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
127
- _this.resourceIdentifier = opts.resourceIdentifier;
128
- _this.resourceType = opts.resourceType;
129
- _this.serviceCode = opts.serviceCode;
130
- _this.quotaCode = opts.quotaCode;
131
- return _this;
119
+ export class ServiceQuotaExceededException extends __BaseException {
120
+ constructor(opts) {
121
+ super({
122
+ name: "ServiceQuotaExceededException",
123
+ $fault: "client",
124
+ ...opts,
125
+ });
126
+ this.name = "ServiceQuotaExceededException";
127
+ this.$fault = "client";
128
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
129
+ this.resourceIdentifier = opts.resourceIdentifier;
130
+ this.resourceType = opts.resourceType;
131
+ this.serviceCode = opts.serviceCode;
132
+ this.quotaCode = opts.quotaCode;
132
133
  }
133
- return ServiceQuotaExceededException;
134
- }(__BaseException));
135
- export { ServiceQuotaExceededException };
136
- var ThrottlingException = (function (_super) {
137
- __extends(ThrottlingException, _super);
138
- function ThrottlingException(opts) {
139
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
140
- _this.name = "ThrottlingException";
141
- _this.$fault = "client";
142
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
143
- _this.serviceCode = opts.serviceCode;
144
- _this.quotaCode = opts.quotaCode;
145
- return _this;
134
+ }
135
+ export class ThrottlingException extends __BaseException {
136
+ constructor(opts) {
137
+ super({
138
+ name: "ThrottlingException",
139
+ $fault: "client",
140
+ ...opts,
141
+ });
142
+ this.name = "ThrottlingException";
143
+ this.$fault = "client";
144
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
145
+ this.serviceCode = opts.serviceCode;
146
+ this.quotaCode = opts.quotaCode;
146
147
  }
147
- return ThrottlingException;
148
- }(__BaseException));
149
- export { ThrottlingException };
150
- var ValidationException = (function (_super) {
151
- __extends(ValidationException, _super);
152
- function ValidationException(opts) {
153
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
154
- _this.name = "ValidationException";
155
- _this.$fault = "client";
156
- Object.setPrototypeOf(_this, ValidationException.prototype);
157
- return _this;
148
+ }
149
+ export class ValidationException extends __BaseException {
150
+ constructor(opts) {
151
+ super({
152
+ name: "ValidationException",
153
+ $fault: "client",
154
+ ...opts,
155
+ });
156
+ this.name = "ValidationException";
157
+ this.$fault = "client";
158
+ Object.setPrototypeOf(this, ValidationException.prototype);
158
159
  }
159
- return ValidationException;
160
- }(__BaseException));
161
- export { ValidationException };
160
+ }
162
161
  export var NotificationTargetItem;
163
162
  (function (NotificationTargetItem) {
164
- NotificationTargetItem.visit = function (value, visitor) {
163
+ NotificationTargetItem.visit = (value, visitor) => {
165
164
  if (value.snsTopicArn !== undefined)
166
165
  return visitor.snsTopicArn(value.snsTopicArn);
167
166
  return visitor._(value.$unknown[0], value.$unknown[1]);
168
167
  };
169
168
  })(NotificationTargetItem || (NotificationTargetItem = {}));
170
- var ResourceNotFoundException = (function (_super) {
171
- __extends(ResourceNotFoundException, _super);
172
- function ResourceNotFoundException(opts) {
173
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
174
- _this.name = "ResourceNotFoundException";
175
- _this.$fault = "client";
176
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
177
- _this.resourceIdentifier = opts.resourceIdentifier;
178
- _this.resourceType = opts.resourceType;
179
- return _this;
169
+ export class ResourceNotFoundException extends __BaseException {
170
+ constructor(opts) {
171
+ super({
172
+ name: "ResourceNotFoundException",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ this.name = "ResourceNotFoundException";
177
+ this.$fault = "client";
178
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
179
+ this.resourceIdentifier = opts.resourceIdentifier;
180
+ this.resourceType = opts.resourceType;
180
181
  }
181
- return ResourceNotFoundException;
182
- }(__BaseException));
183
- export { ResourceNotFoundException };
182
+ }
184
183
  export var IncidentRecordStatus;
185
184
  (function (IncidentRecordStatus) {
186
185
  IncidentRecordStatus["OPEN"] = "OPEN";
@@ -214,7 +213,7 @@ export var ItemType;
214
213
  })(ItemType || (ItemType = {}));
215
214
  export var ItemValue;
216
215
  (function (ItemValue) {
217
- ItemValue.visit = function (value, visitor) {
216
+ ItemValue.visit = (value, visitor) => {
218
217
  if (value.arn !== undefined)
219
218
  return visitor.arn(value.arn);
220
219
  if (value.url !== undefined)
@@ -235,7 +234,7 @@ export var SortOrder;
235
234
  })(SortOrder || (SortOrder = {}));
236
235
  export var RelatedItemsUpdate;
237
236
  (function (RelatedItemsUpdate) {
238
- RelatedItemsUpdate.visit = function (value, visitor) {
237
+ RelatedItemsUpdate.visit = (value, visitor) => {
239
238
  if (value.itemToAdd !== undefined)
240
239
  return visitor.itemToAdd(value.itemToAdd);
241
240
  if (value.itemToRemove !== undefined)
@@ -245,7 +244,7 @@ export var RelatedItemsUpdate;
245
244
  })(RelatedItemsUpdate || (RelatedItemsUpdate = {}));
246
245
  export var UpdateReplicationSetAction;
247
246
  (function (UpdateReplicationSetAction) {
248
- UpdateReplicationSetAction.visit = function (value, visitor) {
247
+ UpdateReplicationSetAction.visit = (value, visitor) => {
249
248
  if (value.addRegionAction !== undefined)
250
249
  return visitor.addRegionAction(value.addRegionAction);
251
250
  if (value.deleteRegionAction !== undefined)
@@ -253,56 +252,56 @@ export var UpdateReplicationSetAction;
253
252
  return visitor._(value.$unknown[0], value.$unknown[1]);
254
253
  };
255
254
  })(UpdateReplicationSetAction || (UpdateReplicationSetAction = {}));
256
- export var DynamicSsmParameterValueFilterSensitiveLog = function (obj) {
257
- var _a;
255
+ export const DynamicSsmParameterValueFilterSensitiveLog = (obj) => {
258
256
  if (obj.variable !== undefined)
259
257
  return { variable: obj.variable };
260
258
  if (obj.$unknown !== undefined)
261
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
259
+ return { [obj.$unknown[0]]: "UNKNOWN" };
262
260
  };
263
- export var SsmAutomationFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.dynamicParameters && {
264
- dynamicParameters: Object.entries(obj.dynamicParameters).reduce(function (acc, _a) {
265
- var _b;
266
- var _c = __read(_a, 2), key = _c[0], value = _c[1];
267
- return (__assign(__assign({}, acc), (_b = {}, _b[key] = DynamicSsmParameterValueFilterSensitiveLog(value), _b)));
268
- }, {}),
269
- }))); };
270
- export var ActionFilterSensitiveLog = function (obj) {
271
- var _a;
261
+ export const SsmAutomationFilterSensitiveLog = (obj) => ({
262
+ ...obj,
263
+ ...(obj.dynamicParameters && {
264
+ dynamicParameters: Object.entries(obj.dynamicParameters).reduce((acc, [key, value]) => ({
265
+ ...acc,
266
+ [key]: DynamicSsmParameterValueFilterSensitiveLog(value),
267
+ }), {}),
268
+ }),
269
+ });
270
+ export const ActionFilterSensitiveLog = (obj) => {
272
271
  if (obj.ssmAutomation !== undefined)
273
272
  return { ssmAutomation: SsmAutomationFilterSensitiveLog(obj.ssmAutomation) };
274
273
  if (obj.$unknown !== undefined)
275
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
274
+ return { [obj.$unknown[0]]: "UNKNOWN" };
276
275
  };
277
- export var AddRegionActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var AttributeValueListFilterSensitiveLog = function (obj) {
279
- var _a;
276
+ export const AddRegionActionFilterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ export const AttributeValueListFilterSensitiveLog = (obj) => {
280
280
  if (obj.stringValues !== undefined)
281
281
  return { stringValues: obj.stringValues };
282
282
  if (obj.integerValues !== undefined)
283
283
  return { integerValues: obj.integerValues };
284
284
  if (obj.$unknown !== undefined)
285
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
285
+ return { [obj.$unknown[0]]: "UNKNOWN" };
286
286
  };
287
- export var AutomationExecutionFilterSensitiveLog = function (obj) {
288
- var _a;
287
+ export const AutomationExecutionFilterSensitiveLog = (obj) => {
289
288
  if (obj.ssmExecutionArn !== undefined)
290
289
  return { ssmExecutionArn: obj.ssmExecutionArn };
291
290
  if (obj.$unknown !== undefined)
292
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
291
+ return { [obj.$unknown[0]]: "UNKNOWN" };
293
292
  };
294
- export var EmptyChatChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var ChatChannelFilterSensitiveLog = function (obj) {
296
- var _a;
293
+ export const EmptyChatChannelFilterSensitiveLog = (obj) => ({
294
+ ...obj,
295
+ });
296
+ export const ChatChannelFilterSensitiveLog = (obj) => {
297
297
  if (obj.empty !== undefined)
298
298
  return { empty: EmptyChatChannelFilterSensitiveLog(obj.empty) };
299
299
  if (obj.chatbotSns !== undefined)
300
300
  return { chatbotSns: obj.chatbotSns };
301
301
  if (obj.$unknown !== undefined)
302
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
302
+ return { [obj.$unknown[0]]: "UNKNOWN" };
303
303
  };
304
- export var ConditionFilterSensitiveLog = function (obj) {
305
- var _a;
304
+ export const ConditionFilterSensitiveLog = (obj) => {
306
305
  if (obj.before !== undefined)
307
306
  return { before: obj.before };
308
307
  if (obj.after !== undefined)
@@ -310,61 +309,147 @@ export var ConditionFilterSensitiveLog = function (obj) {
310
309
  if (obj.equals !== undefined)
311
310
  return { equals: AttributeValueListFilterSensitiveLog(obj.equals) };
312
311
  if (obj.$unknown !== undefined)
313
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
312
+ return { [obj.$unknown[0]]: "UNKNOWN" };
314
313
  };
315
- export var RegionMapInputValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var CreateReplicationSetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var CreateReplicationSetOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var NotificationTargetItemFilterSensitiveLog = function (obj) {
319
- var _a;
314
+ export const RegionMapInputValueFilterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ export const CreateReplicationSetInputFilterSensitiveLog = (obj) => ({
318
+ ...obj,
319
+ });
320
+ export const CreateReplicationSetOutputFilterSensitiveLog = (obj) => ({
321
+ ...obj,
322
+ });
323
+ export const NotificationTargetItemFilterSensitiveLog = (obj) => {
320
324
  if (obj.snsTopicArn !== undefined)
321
325
  return { snsTopicArn: obj.snsTopicArn };
322
326
  if (obj.$unknown !== undefined)
323
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
327
+ return { [obj.$unknown[0]]: "UNKNOWN" };
324
328
  };
325
- export var IncidentTemplateFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.notificationTargets && {
326
- notificationTargets: obj.notificationTargets.map(function (item) { return NotificationTargetItemFilterSensitiveLog(item); }),
327
- }))); };
328
- export var CreateResponsePlanInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) })), (obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) })), (obj.actions && { actions: obj.actions.map(function (item) { return ActionFilterSensitiveLog(item); }) }))); };
329
- export var CreateResponsePlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var CreateTimelineEventInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var CreateTimelineEventOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var DeleteIncidentRecordInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var DeleteIncidentRecordOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var DeleteRegionActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var DeleteReplicationSetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var DeleteReplicationSetOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var DeleteResourcePolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var DeleteResourcePolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var DeleteResponsePlanInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var DeleteResponsePlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var DeleteTimelineEventInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var DeleteTimelineEventOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var EventSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var FilterFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.condition && { condition: ConditionFilterSensitiveLog(obj.condition) }))); };
345
- export var GetIncidentRecordInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var IncidentRecordSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var IncidentRecordFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.automationExecutions && {
348
- automationExecutions: obj.automationExecutions.map(function (item) { return AutomationExecutionFilterSensitiveLog(item); }),
349
- })), (obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) })), (obj.notificationTargets && {
350
- notificationTargets: obj.notificationTargets.map(function (item) { return NotificationTargetItemFilterSensitiveLog(item); }),
351
- }))); };
352
- export var GetIncidentRecordOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.incidentRecord && { incidentRecord: IncidentRecordFilterSensitiveLog(obj.incidentRecord) }))); };
353
- export var GetReplicationSetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var RegionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var ReplicationSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var GetReplicationSetOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var GetResourcePoliciesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var ResourcePolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var GetResourcePoliciesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var GetResponsePlanInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var GetResponsePlanOutputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) })), (obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) })), (obj.actions && { actions: obj.actions.map(function (item) { return ActionFilterSensitiveLog(item); }) }))); };
362
- export var GetTimelineEventInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var TimelineEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var GetTimelineEventOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var IncidentRecordSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var ItemValueFilterSensitiveLog = function (obj) {
367
- var _a;
329
+ export const IncidentTemplateFilterSensitiveLog = (obj) => ({
330
+ ...obj,
331
+ ...(obj.notificationTargets && {
332
+ notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
333
+ }),
334
+ });
335
+ export const CreateResponsePlanInputFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ ...(obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) }),
338
+ ...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
339
+ ...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
340
+ });
341
+ export const CreateResponsePlanOutputFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const CreateTimelineEventInputFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const CreateTimelineEventOutputFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ });
350
+ export const DeleteIncidentRecordInputFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const DeleteIncidentRecordOutputFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const DeleteRegionActionFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const DeleteReplicationSetInputFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const DeleteReplicationSetOutputFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const DeleteResourcePolicyInputFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const DeleteResourcePolicyOutputFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const DeleteResponsePlanInputFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const DeleteResponsePlanOutputFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const DeleteTimelineEventInputFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const DeleteTimelineEventOutputFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const EventSummaryFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const FilterFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ ...(obj.condition && { condition: ConditionFilterSensitiveLog(obj.condition) }),
389
+ });
390
+ export const GetIncidentRecordInputFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ });
393
+ export const IncidentRecordSourceFilterSensitiveLog = (obj) => ({
394
+ ...obj,
395
+ });
396
+ export const IncidentRecordFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ ...(obj.automationExecutions && {
399
+ automationExecutions: obj.automationExecutions.map((item) => AutomationExecutionFilterSensitiveLog(item)),
400
+ }),
401
+ ...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
402
+ ...(obj.notificationTargets && {
403
+ notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
404
+ }),
405
+ });
406
+ export const GetIncidentRecordOutputFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ ...(obj.incidentRecord && { incidentRecord: IncidentRecordFilterSensitiveLog(obj.incidentRecord) }),
409
+ });
410
+ export const GetReplicationSetInputFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const RegionInfoFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const ReplicationSetFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const GetReplicationSetOutputFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const GetResourcePoliciesInputFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const ResourcePolicyFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const GetResourcePoliciesOutputFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const GetResponsePlanInputFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const GetResponsePlanOutputFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ ...(obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) }),
437
+ ...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
438
+ ...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
439
+ });
440
+ export const GetTimelineEventInputFilterSensitiveLog = (obj) => ({
441
+ ...obj,
442
+ });
443
+ export const TimelineEventFilterSensitiveLog = (obj) => ({
444
+ ...obj,
445
+ });
446
+ export const GetTimelineEventOutputFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const IncidentRecordSummaryFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const ItemValueFilterSensitiveLog = (obj) => {
368
453
  if (obj.arn !== undefined)
369
454
  return { arn: obj.arn };
370
455
  if (obj.url !== undefined)
@@ -372,65 +457,146 @@ export var ItemValueFilterSensitiveLog = function (obj) {
372
457
  if (obj.metricDefinition !== undefined)
373
458
  return { metricDefinition: obj.metricDefinition };
374
459
  if (obj.$unknown !== undefined)
375
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
460
+ return { [obj.$unknown[0]]: "UNKNOWN" };
376
461
  };
377
- export var ItemIdentifierFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.value && { value: ItemValueFilterSensitiveLog(obj.value) }))); };
378
- export var ListIncidentRecordsInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.filters && { filters: obj.filters.map(function (item) { return FilterFilterSensitiveLog(item); }) }))); };
379
- export var ListIncidentRecordsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var ListRelatedItemsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var RelatedItemFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.identifier && { identifier: ItemIdentifierFilterSensitiveLog(obj.identifier) }))); };
382
- export var ListRelatedItemsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.relatedItems && { relatedItems: obj.relatedItems.map(function (item) { return RelatedItemFilterSensitiveLog(item); }) }))); };
383
- export var ListReplicationSetsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var ListReplicationSetsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var ListResponsePlansInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var ResponsePlanSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var ListResponsePlansOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var ListTimelineEventsInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.filters && { filters: obj.filters.map(function (item) { return FilterFilterSensitiveLog(item); }) }))); };
391
- export var ListTimelineEventsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
- export var PutResourcePolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
- export var PutResourcePolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
- export var RelatedItemsUpdateFilterSensitiveLog = function (obj) {
395
- var _a;
462
+ export const ItemIdentifierFilterSensitiveLog = (obj) => ({
463
+ ...obj,
464
+ ...(obj.value && { value: ItemValueFilterSensitiveLog(obj.value) }),
465
+ });
466
+ export const ListIncidentRecordsInputFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ ...(obj.filters && { filters: obj.filters.map((item) => FilterFilterSensitiveLog(item)) }),
469
+ });
470
+ export const ListIncidentRecordsOutputFilterSensitiveLog = (obj) => ({
471
+ ...obj,
472
+ });
473
+ export const ListRelatedItemsInputFilterSensitiveLog = (obj) => ({
474
+ ...obj,
475
+ });
476
+ export const RelatedItemFilterSensitiveLog = (obj) => ({
477
+ ...obj,
478
+ ...(obj.identifier && { identifier: ItemIdentifierFilterSensitiveLog(obj.identifier) }),
479
+ });
480
+ export const ListRelatedItemsOutputFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ ...(obj.relatedItems && { relatedItems: obj.relatedItems.map((item) => RelatedItemFilterSensitiveLog(item)) }),
483
+ });
484
+ export const ListReplicationSetsInputFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ });
487
+ export const ListReplicationSetsOutputFilterSensitiveLog = (obj) => ({
488
+ ...obj,
489
+ });
490
+ export const ListResponsePlansInputFilterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ export const ResponsePlanSummaryFilterSensitiveLog = (obj) => ({
494
+ ...obj,
495
+ });
496
+ export const ListResponsePlansOutputFilterSensitiveLog = (obj) => ({
497
+ ...obj,
498
+ });
499
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });
505
+ export const ListTimelineEventsInputFilterSensitiveLog = (obj) => ({
506
+ ...obj,
507
+ ...(obj.filters && { filters: obj.filters.map((item) => FilterFilterSensitiveLog(item)) }),
508
+ });
509
+ export const ListTimelineEventsOutputFilterSensitiveLog = (obj) => ({
510
+ ...obj,
511
+ });
512
+ export const PutResourcePolicyInputFilterSensitiveLog = (obj) => ({
513
+ ...obj,
514
+ });
515
+ export const PutResourcePolicyOutputFilterSensitiveLog = (obj) => ({
516
+ ...obj,
517
+ });
518
+ export const RelatedItemsUpdateFilterSensitiveLog = (obj) => {
396
519
  if (obj.itemToAdd !== undefined)
397
520
  return { itemToAdd: RelatedItemFilterSensitiveLog(obj.itemToAdd) };
398
521
  if (obj.itemToRemove !== undefined)
399
522
  return { itemToRemove: ItemIdentifierFilterSensitiveLog(obj.itemToRemove) };
400
523
  if (obj.$unknown !== undefined)
401
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
524
+ return { [obj.$unknown[0]]: "UNKNOWN" };
402
525
  };
403
- export var TriggerDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
- export var StartIncidentInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.relatedItems && { relatedItems: obj.relatedItems.map(function (item) { return RelatedItemFilterSensitiveLog(item); }) }))); };
405
- export var StartIncidentOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
- export var UpdateDeletionProtectionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
- export var UpdateDeletionProtectionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
412
- export var UpdateIncidentRecordInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) })), (obj.notificationTargets && {
413
- notificationTargets: obj.notificationTargets.map(function (item) { return NotificationTargetItemFilterSensitiveLog(item); }),
414
- }))); };
415
- export var UpdateIncidentRecordOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
416
- export var UpdateRelatedItemsInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.relatedItemsUpdate && { relatedItemsUpdate: RelatedItemsUpdateFilterSensitiveLog(obj.relatedItemsUpdate) }))); };
417
- export var UpdateRelatedItemsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
- export var UpdateReplicationSetActionFilterSensitiveLog = function (obj) {
419
- var _a;
526
+ export const TriggerDetailsFilterSensitiveLog = (obj) => ({
527
+ ...obj,
528
+ });
529
+ export const StartIncidentInputFilterSensitiveLog = (obj) => ({
530
+ ...obj,
531
+ ...(obj.relatedItems && { relatedItems: obj.relatedItems.map((item) => RelatedItemFilterSensitiveLog(item)) }),
532
+ });
533
+ export const StartIncidentOutputFilterSensitiveLog = (obj) => ({
534
+ ...obj,
535
+ });
536
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
537
+ ...obj,
538
+ });
539
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
540
+ ...obj,
541
+ });
542
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
543
+ ...obj,
544
+ });
545
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
546
+ ...obj,
547
+ });
548
+ export const UpdateDeletionProtectionInputFilterSensitiveLog = (obj) => ({
549
+ ...obj,
550
+ });
551
+ export const UpdateDeletionProtectionOutputFilterSensitiveLog = (obj) => ({
552
+ ...obj,
553
+ });
554
+ export const UpdateIncidentRecordInputFilterSensitiveLog = (obj) => ({
555
+ ...obj,
556
+ ...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
557
+ ...(obj.notificationTargets && {
558
+ notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
559
+ }),
560
+ });
561
+ export const UpdateIncidentRecordOutputFilterSensitiveLog = (obj) => ({
562
+ ...obj,
563
+ });
564
+ export const UpdateRelatedItemsInputFilterSensitiveLog = (obj) => ({
565
+ ...obj,
566
+ ...(obj.relatedItemsUpdate && { relatedItemsUpdate: RelatedItemsUpdateFilterSensitiveLog(obj.relatedItemsUpdate) }),
567
+ });
568
+ export const UpdateRelatedItemsOutputFilterSensitiveLog = (obj) => ({
569
+ ...obj,
570
+ });
571
+ export const UpdateReplicationSetActionFilterSensitiveLog = (obj) => {
420
572
  if (obj.addRegionAction !== undefined)
421
573
  return { addRegionAction: AddRegionActionFilterSensitiveLog(obj.addRegionAction) };
422
574
  if (obj.deleteRegionAction !== undefined)
423
575
  return { deleteRegionAction: DeleteRegionActionFilterSensitiveLog(obj.deleteRegionAction) };
424
576
  if (obj.$unknown !== undefined)
425
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
577
+ return { [obj.$unknown[0]]: "UNKNOWN" };
426
578
  };
427
- export var UpdateReplicationSetInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.actions && { actions: obj.actions.map(function (item) { return UpdateReplicationSetActionFilterSensitiveLog(item); }) }))); };
428
- export var UpdateReplicationSetOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
429
- export var UpdateResponsePlanInputFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.incidentTemplateNotificationTargets && {
430
- incidentTemplateNotificationTargets: obj.incidentTemplateNotificationTargets.map(function (item) {
431
- return NotificationTargetItemFilterSensitiveLog(item);
579
+ export const UpdateReplicationSetInputFilterSensitiveLog = (obj) => ({
580
+ ...obj,
581
+ ...(obj.actions && { actions: obj.actions.map((item) => UpdateReplicationSetActionFilterSensitiveLog(item)) }),
582
+ });
583
+ export const UpdateReplicationSetOutputFilterSensitiveLog = (obj) => ({
584
+ ...obj,
585
+ });
586
+ export const UpdateResponsePlanInputFilterSensitiveLog = (obj) => ({
587
+ ...obj,
588
+ ...(obj.incidentTemplateNotificationTargets && {
589
+ incidentTemplateNotificationTargets: obj.incidentTemplateNotificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
432
590
  }),
433
- })), (obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) })), (obj.actions && { actions: obj.actions.map(function (item) { return ActionFilterSensitiveLog(item); }) }))); };
434
- export var UpdateResponsePlanOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
435
- export var UpdateTimelineEventInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
- export var UpdateTimelineEventOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
591
+ ...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
592
+ ...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
593
+ });
594
+ export const UpdateResponsePlanOutputFilterSensitiveLog = (obj) => ({
595
+ ...obj,
596
+ });
597
+ export const UpdateTimelineEventInputFilterSensitiveLog = (obj) => ({
598
+ ...obj,
599
+ });
600
+ export const UpdateTimelineEventOutputFilterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ });