@aws-sdk/client-ssm-incidents 3.183.0 → 3.186.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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/SSMIncidents.js +125 -118
- package/dist-es/SSMIncidentsClient.js +28 -22
- package/dist-es/commands/CreateReplicationSetCommand.js +28 -21
- package/dist-es/commands/CreateResponsePlanCommand.js +28 -21
- package/dist-es/commands/CreateTimelineEventCommand.js +28 -21
- package/dist-es/commands/DeleteIncidentRecordCommand.js +28 -21
- package/dist-es/commands/DeleteReplicationSetCommand.js +28 -21
- package/dist-es/commands/DeleteResourcePolicyCommand.js +28 -21
- package/dist-es/commands/DeleteResponsePlanCommand.js +28 -21
- package/dist-es/commands/DeleteTimelineEventCommand.js +28 -21
- package/dist-es/commands/GetIncidentRecordCommand.js +28 -21
- package/dist-es/commands/GetReplicationSetCommand.js +28 -21
- package/dist-es/commands/GetResourcePoliciesCommand.js +28 -21
- package/dist-es/commands/GetResponsePlanCommand.js +28 -21
- package/dist-es/commands/GetTimelineEventCommand.js +28 -21
- package/dist-es/commands/ListIncidentRecordsCommand.js +28 -21
- package/dist-es/commands/ListRelatedItemsCommand.js +28 -21
- package/dist-es/commands/ListReplicationSetsCommand.js +28 -21
- package/dist-es/commands/ListResponsePlansCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListTimelineEventsCommand.js +28 -21
- package/dist-es/commands/PutResourcePolicyCommand.js +28 -21
- package/dist-es/commands/StartIncidentCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateDeletionProtectionCommand.js +28 -21
- package/dist-es/commands/UpdateIncidentRecordCommand.js +28 -21
- package/dist-es/commands/UpdateRelatedItemsCommand.js +28 -21
- package/dist-es/commands/UpdateReplicationSetCommand.js +28 -21
- package/dist-es/commands/UpdateResponsePlanCommand.js +28 -21
- package/dist-es/commands/UpdateTimelineEventCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SSMIncidentsServiceException.js +10 -5
- package/dist-es/models/models_0.js +223 -389
- package/dist-es/pagination/GetResourcePoliciesPaginator.js +68 -25
- package/dist-es/pagination/ListIncidentRecordsPaginator.js +68 -25
- package/dist-es/pagination/ListRelatedItemsPaginator.js +68 -25
- package/dist-es/pagination/ListReplicationSetsPaginator.js +68 -25
- package/dist-es/pagination/ListResponsePlansPaginator.js +68 -25
- package/dist-es/pagination/ListTimelineEventsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3142 -2327
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/dist-es/waiters/waitForWaitForReplicationSetActive.js +74 -54
- package/dist-es/waiters/waitForWaitForReplicationSetDeleted.js +59 -39
- package/package.json +34 -34
|
@@ -1,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends, __read } from "tslib";
|
|
1
2
|
import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
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;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
14
15
|
export var VariableType;
|
|
15
16
|
(function (VariableType) {
|
|
16
17
|
VariableType["INCIDENT_RECORD_ARN"] = "INCIDENT_RECORD_ARN";
|
|
@@ -18,7 +19,7 @@ export var VariableType;
|
|
|
18
19
|
})(VariableType || (VariableType = {}));
|
|
19
20
|
export var DynamicSsmParameterValue;
|
|
20
21
|
(function (DynamicSsmParameterValue) {
|
|
21
|
-
DynamicSsmParameterValue.visit = (value, visitor)
|
|
22
|
+
DynamicSsmParameterValue.visit = function (value, visitor) {
|
|
22
23
|
if (value.variable !== undefined)
|
|
23
24
|
return visitor.variable(value.variable);
|
|
24
25
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -31,7 +32,7 @@ export var SsmTargetAccount;
|
|
|
31
32
|
})(SsmTargetAccount || (SsmTargetAccount = {}));
|
|
32
33
|
export var Action;
|
|
33
34
|
(function (Action) {
|
|
34
|
-
Action.visit = (value, visitor)
|
|
35
|
+
Action.visit = function (value, visitor) {
|
|
35
36
|
if (value.ssmAutomation !== undefined)
|
|
36
37
|
return visitor.ssmAutomation(value.ssmAutomation);
|
|
37
38
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -39,7 +40,7 @@ export var Action;
|
|
|
39
40
|
})(Action || (Action = {}));
|
|
40
41
|
export var AttributeValueList;
|
|
41
42
|
(function (AttributeValueList) {
|
|
42
|
-
AttributeValueList.visit = (value, visitor)
|
|
43
|
+
AttributeValueList.visit = function (value, visitor) {
|
|
43
44
|
if (value.stringValues !== undefined)
|
|
44
45
|
return visitor.stringValues(value.stringValues);
|
|
45
46
|
if (value.integerValues !== undefined)
|
|
@@ -49,7 +50,7 @@ export var AttributeValueList;
|
|
|
49
50
|
})(AttributeValueList || (AttributeValueList = {}));
|
|
50
51
|
export var AutomationExecution;
|
|
51
52
|
(function (AutomationExecution) {
|
|
52
|
-
AutomationExecution.visit = (value, visitor)
|
|
53
|
+
AutomationExecution.visit = function (value, visitor) {
|
|
53
54
|
if (value.ssmExecutionArn !== undefined)
|
|
54
55
|
return visitor.ssmExecutionArn(value.ssmExecutionArn);
|
|
55
56
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -57,7 +58,7 @@ export var AutomationExecution;
|
|
|
57
58
|
})(AutomationExecution || (AutomationExecution = {}));
|
|
58
59
|
export var ChatChannel;
|
|
59
60
|
(function (ChatChannel) {
|
|
60
|
-
ChatChannel.visit = (value, visitor)
|
|
61
|
+
ChatChannel.visit = function (value, visitor) {
|
|
61
62
|
if (value.empty !== undefined)
|
|
62
63
|
return visitor.empty(value.empty);
|
|
63
64
|
if (value.chatbotSns !== undefined)
|
|
@@ -67,7 +68,7 @@ export var ChatChannel;
|
|
|
67
68
|
})(ChatChannel || (ChatChannel = {}));
|
|
68
69
|
export var Condition;
|
|
69
70
|
(function (Condition) {
|
|
70
|
-
Condition.visit = (value, visitor)
|
|
71
|
+
Condition.visit = function (value, visitor) {
|
|
71
72
|
if (value.before !== undefined)
|
|
72
73
|
return visitor.before(value.before);
|
|
73
74
|
if (value.after !== undefined)
|
|
@@ -85,101 +86,101 @@ export var ResourceType;
|
|
|
85
86
|
ResourceType["RESPONSE_PLAN"] = "RESPONSE_PLAN";
|
|
86
87
|
ResourceType["TIMELINE_EVENT"] = "TIMELINE_EVENT";
|
|
87
88
|
})(ResourceType || (ResourceType = {}));
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
this.resourceType = opts.resourceType;
|
|
100
|
-
this.retryAfter = opts.retryAfter;
|
|
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;
|
|
101
100
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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;
|
|
113
112
|
}
|
|
114
|
-
|
|
113
|
+
return InternalServerException;
|
|
114
|
+
}(__BaseException));
|
|
115
|
+
export { InternalServerException };
|
|
115
116
|
export var ServiceCode;
|
|
116
117
|
(function (ServiceCode) {
|
|
117
118
|
ServiceCode["SSM_INCIDENTS"] = "ssm-incidents";
|
|
118
119
|
})(ServiceCode || (ServiceCode = {}));
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
this.serviceCode = opts.serviceCode;
|
|
132
|
-
this.quotaCode = opts.quotaCode;
|
|
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;
|
|
133
132
|
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
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;
|
|
147
146
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
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;
|
|
159
158
|
}
|
|
160
|
-
|
|
159
|
+
return ValidationException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { ValidationException };
|
|
161
162
|
export var NotificationTargetItem;
|
|
162
163
|
(function (NotificationTargetItem) {
|
|
163
|
-
NotificationTargetItem.visit = (value, visitor)
|
|
164
|
+
NotificationTargetItem.visit = function (value, visitor) {
|
|
164
165
|
if (value.snsTopicArn !== undefined)
|
|
165
166
|
return visitor.snsTopicArn(value.snsTopicArn);
|
|
166
167
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
167
168
|
};
|
|
168
169
|
})(NotificationTargetItem || (NotificationTargetItem = {}));
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
180
|
-
this.resourceType = opts.resourceType;
|
|
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;
|
|
181
180
|
}
|
|
182
|
-
|
|
181
|
+
return ResourceNotFoundException;
|
|
182
|
+
}(__BaseException));
|
|
183
|
+
export { ResourceNotFoundException };
|
|
183
184
|
export var IncidentRecordStatus;
|
|
184
185
|
(function (IncidentRecordStatus) {
|
|
185
186
|
IncidentRecordStatus["OPEN"] = "OPEN";
|
|
@@ -213,7 +214,7 @@ export var ItemType;
|
|
|
213
214
|
})(ItemType || (ItemType = {}));
|
|
214
215
|
export var ItemValue;
|
|
215
216
|
(function (ItemValue) {
|
|
216
|
-
ItemValue.visit = (value, visitor)
|
|
217
|
+
ItemValue.visit = function (value, visitor) {
|
|
217
218
|
if (value.arn !== undefined)
|
|
218
219
|
return visitor.arn(value.arn);
|
|
219
220
|
if (value.url !== undefined)
|
|
@@ -234,7 +235,7 @@ export var SortOrder;
|
|
|
234
235
|
})(SortOrder || (SortOrder = {}));
|
|
235
236
|
export var RelatedItemsUpdate;
|
|
236
237
|
(function (RelatedItemsUpdate) {
|
|
237
|
-
RelatedItemsUpdate.visit = (value, visitor)
|
|
238
|
+
RelatedItemsUpdate.visit = function (value, visitor) {
|
|
238
239
|
if (value.itemToAdd !== undefined)
|
|
239
240
|
return visitor.itemToAdd(value.itemToAdd);
|
|
240
241
|
if (value.itemToRemove !== undefined)
|
|
@@ -244,7 +245,7 @@ export var RelatedItemsUpdate;
|
|
|
244
245
|
})(RelatedItemsUpdate || (RelatedItemsUpdate = {}));
|
|
245
246
|
export var UpdateReplicationSetAction;
|
|
246
247
|
(function (UpdateReplicationSetAction) {
|
|
247
|
-
UpdateReplicationSetAction.visit = (value, visitor)
|
|
248
|
+
UpdateReplicationSetAction.visit = function (value, visitor) {
|
|
248
249
|
if (value.addRegionAction !== undefined)
|
|
249
250
|
return visitor.addRegionAction(value.addRegionAction);
|
|
250
251
|
if (value.deleteRegionAction !== undefined)
|
|
@@ -252,56 +253,56 @@ export var UpdateReplicationSetAction;
|
|
|
252
253
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
253
254
|
};
|
|
254
255
|
})(UpdateReplicationSetAction || (UpdateReplicationSetAction = {}));
|
|
255
|
-
export
|
|
256
|
+
export var DynamicSsmParameterValueFilterSensitiveLog = function (obj) {
|
|
257
|
+
var _a;
|
|
256
258
|
if (obj.variable !== undefined)
|
|
257
259
|
return { variable: obj.variable };
|
|
258
260
|
if (obj.$unknown !== undefined)
|
|
259
|
-
return { [obj.$unknown[0]]
|
|
261
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
260
262
|
};
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export const ActionFilterSensitiveLog = (obj) => {
|
|
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;
|
|
271
272
|
if (obj.ssmAutomation !== undefined)
|
|
272
273
|
return { ssmAutomation: SsmAutomationFilterSensitiveLog(obj.ssmAutomation) };
|
|
273
274
|
if (obj.$unknown !== undefined)
|
|
274
|
-
return { [obj.$unknown[0]]
|
|
275
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
275
276
|
};
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
export const AttributeValueListFilterSensitiveLog = (obj) => {
|
|
277
|
+
export var AddRegionActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var AttributeValueListFilterSensitiveLog = function (obj) {
|
|
279
|
+
var _a;
|
|
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 { [obj.$unknown[0]]
|
|
285
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
286
286
|
};
|
|
287
|
-
export
|
|
287
|
+
export var AutomationExecutionFilterSensitiveLog = function (obj) {
|
|
288
|
+
var _a;
|
|
288
289
|
if (obj.ssmExecutionArn !== undefined)
|
|
289
290
|
return { ssmExecutionArn: obj.ssmExecutionArn };
|
|
290
291
|
if (obj.$unknown !== undefined)
|
|
291
|
-
return { [obj.$unknown[0]]
|
|
292
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
292
293
|
};
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
export const ChatChannelFilterSensitiveLog = (obj) => {
|
|
294
|
+
export var EmptyChatChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var ChatChannelFilterSensitiveLog = function (obj) {
|
|
296
|
+
var _a;
|
|
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 { [obj.$unknown[0]]
|
|
302
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
303
303
|
};
|
|
304
|
-
export
|
|
304
|
+
export var ConditionFilterSensitiveLog = function (obj) {
|
|
305
|
+
var _a;
|
|
305
306
|
if (obj.before !== undefined)
|
|
306
307
|
return { before: obj.before };
|
|
307
308
|
if (obj.after !== undefined)
|
|
@@ -309,147 +310,61 @@ export const ConditionFilterSensitiveLog = (obj) => {
|
|
|
309
310
|
if (obj.equals !== undefined)
|
|
310
311
|
return { equals: AttributeValueListFilterSensitiveLog(obj.equals) };
|
|
311
312
|
if (obj.$unknown !== undefined)
|
|
312
|
-
return { [obj.$unknown[0]]
|
|
313
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
313
314
|
};
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
});
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
});
|
|
320
|
-
export const CreateReplicationSetOutputFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
});
|
|
323
|
-
export const NotificationTargetItemFilterSensitiveLog = (obj) => {
|
|
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;
|
|
324
320
|
if (obj.snsTopicArn !== undefined)
|
|
325
321
|
return { snsTopicArn: obj.snsTopicArn };
|
|
326
322
|
if (obj.$unknown !== undefined)
|
|
327
|
-
return { [obj.$unknown[0]]
|
|
323
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
328
324
|
};
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
});
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
});
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
});
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
});
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
});
|
|
350
|
-
export
|
|
351
|
-
|
|
352
|
-
})
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
});
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
});
|
|
359
|
-
export
|
|
360
|
-
|
|
361
|
-
});
|
|
362
|
-
export
|
|
363
|
-
|
|
364
|
-
});
|
|
365
|
-
export
|
|
366
|
-
|
|
367
|
-
});
|
|
368
|
-
export
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
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) => {
|
|
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;
|
|
453
368
|
if (obj.arn !== undefined)
|
|
454
369
|
return { arn: obj.arn };
|
|
455
370
|
if (obj.url !== undefined)
|
|
@@ -457,146 +372,65 @@ export const ItemValueFilterSensitiveLog = (obj) => {
|
|
|
457
372
|
if (obj.metricDefinition !== undefined)
|
|
458
373
|
return { metricDefinition: obj.metricDefinition };
|
|
459
374
|
if (obj.$unknown !== undefined)
|
|
460
|
-
return { [obj.$unknown[0]]
|
|
375
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
461
376
|
};
|
|
462
|
-
export
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
});
|
|
466
|
-
export
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
});
|
|
470
|
-
export
|
|
471
|
-
|
|
472
|
-
});
|
|
473
|
-
export
|
|
474
|
-
|
|
475
|
-
});
|
|
476
|
-
export
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
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) => {
|
|
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;
|
|
519
396
|
if (obj.itemToAdd !== undefined)
|
|
520
397
|
return { itemToAdd: RelatedItemFilterSensitiveLog(obj.itemToAdd) };
|
|
521
398
|
if (obj.itemToRemove !== undefined)
|
|
522
399
|
return { itemToRemove: ItemIdentifierFilterSensitiveLog(obj.itemToRemove) };
|
|
523
400
|
if (obj.$unknown !== undefined)
|
|
524
|
-
return { [obj.$unknown[0]]
|
|
401
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
525
402
|
};
|
|
526
|
-
export
|
|
527
|
-
|
|
528
|
-
});
|
|
529
|
-
export
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
});
|
|
533
|
-
export
|
|
534
|
-
|
|
535
|
-
})
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
});
|
|
539
|
-
export
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
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) => {
|
|
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;
|
|
572
420
|
if (obj.addRegionAction !== undefined)
|
|
573
421
|
return { addRegionAction: AddRegionActionFilterSensitiveLog(obj.addRegionAction) };
|
|
574
422
|
if (obj.deleteRegionAction !== undefined)
|
|
575
423
|
return { deleteRegionAction: DeleteRegionActionFilterSensitiveLog(obj.deleteRegionAction) };
|
|
576
424
|
if (obj.$unknown !== undefined)
|
|
577
|
-
return { [obj.$unknown[0]]
|
|
425
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
578
426
|
};
|
|
579
|
-
export
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
...obj,
|
|
585
|
-
});
|
|
586
|
-
export const UpdateResponsePlanInputFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
...(obj.incidentTemplateNotificationTargets && {
|
|
589
|
-
incidentTemplateNotificationTargets: obj.incidentTemplateNotificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
|
|
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);
|
|
590
432
|
}),
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
});
|
|
594
|
-
export
|
|
595
|
-
...obj,
|
|
596
|
-
});
|
|
597
|
-
export const UpdateTimelineEventInputFilterSensitiveLog = (obj) => ({
|
|
598
|
-
...obj,
|
|
599
|
-
});
|
|
600
|
-
export const UpdateTimelineEventOutputFilterSensitiveLog = (obj) => ({
|
|
601
|
-
...obj,
|
|
602
|
-
});
|
|
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)); };
|