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