@aws-sdk/client-ssm-incidents 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SSMIncidents.d.ts +0 -29
- package/dist-types/ts3.4/SSMIncidentsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/SSMIncidentsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -296
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +0 -2
- package/package.json +27 -27
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
@@ -13,7 +11,6 @@ export declare enum VariableType {
|
|
|
13
11
|
INCIDENT_RECORD_ARN = "INCIDENT_RECORD_ARN",
|
|
14
12
|
INVOLVED_RESOURCES = "INVOLVED_RESOURCES",
|
|
15
13
|
}
|
|
16
|
-
|
|
17
14
|
export declare type DynamicSsmParameterValue =
|
|
18
15
|
| DynamicSsmParameterValue.VariableMember
|
|
19
16
|
| DynamicSsmParameterValue.$UnknownMember;
|
|
@@ -36,21 +33,14 @@ export declare enum SsmTargetAccount {
|
|
|
36
33
|
IMPACTED_ACCOUNT = "IMPACTED_ACCOUNT",
|
|
37
34
|
RESPONSE_PLAN_OWNER_ACCOUNT = "RESPONSE_PLAN_OWNER_ACCOUNT",
|
|
38
35
|
}
|
|
39
|
-
|
|
40
36
|
export interface SsmAutomation {
|
|
41
37
|
roleArn: string | undefined;
|
|
42
|
-
|
|
43
38
|
documentName: string | undefined;
|
|
44
|
-
|
|
45
39
|
documentVersion?: string;
|
|
46
|
-
|
|
47
40
|
targetAccount?: SsmTargetAccount | string;
|
|
48
|
-
|
|
49
41
|
parameters?: Record<string, string[]>;
|
|
50
|
-
|
|
51
42
|
dynamicParameters?: Record<string, DynamicSsmParameterValue>;
|
|
52
43
|
}
|
|
53
|
-
|
|
54
44
|
export declare type Action = Action.SsmAutomationMember | Action.$UnknownMember;
|
|
55
45
|
export declare namespace Action {
|
|
56
46
|
interface SsmAutomationMember {
|
|
@@ -67,13 +57,10 @@ export declare namespace Action {
|
|
|
67
57
|
}
|
|
68
58
|
const visit: <T>(value: Action, visitor: Visitor<T>) => T;
|
|
69
59
|
}
|
|
70
|
-
|
|
71
60
|
export interface AddRegionAction {
|
|
72
61
|
regionName: string | undefined;
|
|
73
|
-
|
|
74
62
|
sseKmsKeyId?: string;
|
|
75
63
|
}
|
|
76
|
-
|
|
77
64
|
export declare type AttributeValueList =
|
|
78
65
|
| AttributeValueList.IntegerValuesMember
|
|
79
66
|
| AttributeValueList.StringValuesMember
|
|
@@ -84,7 +71,6 @@ export declare namespace AttributeValueList {
|
|
|
84
71
|
integerValues?: never;
|
|
85
72
|
$unknown?: never;
|
|
86
73
|
}
|
|
87
|
-
|
|
88
74
|
interface IntegerValuesMember {
|
|
89
75
|
stringValues?: never;
|
|
90
76
|
integerValues: number[];
|
|
@@ -102,7 +88,6 @@ export declare namespace AttributeValueList {
|
|
|
102
88
|
}
|
|
103
89
|
const visit: <T>(value: AttributeValueList, visitor: Visitor<T>) => T;
|
|
104
90
|
}
|
|
105
|
-
|
|
106
91
|
export declare type AutomationExecution =
|
|
107
92
|
| AutomationExecution.SsmExecutionArnMember
|
|
108
93
|
| AutomationExecution.$UnknownMember;
|
|
@@ -121,9 +106,7 @@ export declare namespace AutomationExecution {
|
|
|
121
106
|
}
|
|
122
107
|
const visit: <T>(value: AutomationExecution, visitor: Visitor<T>) => T;
|
|
123
108
|
}
|
|
124
|
-
|
|
125
109
|
export interface EmptyChatChannel {}
|
|
126
|
-
|
|
127
110
|
export declare type ChatChannel =
|
|
128
111
|
| ChatChannel.ChatbotSnsMember
|
|
129
112
|
| ChatChannel.EmptyMember
|
|
@@ -134,7 +117,6 @@ export declare namespace ChatChannel {
|
|
|
134
117
|
chatbotSns?: never;
|
|
135
118
|
$unknown?: never;
|
|
136
119
|
}
|
|
137
|
-
|
|
138
120
|
interface ChatbotSnsMember {
|
|
139
121
|
empty?: never;
|
|
140
122
|
chatbotSns: string[];
|
|
@@ -152,7 +134,6 @@ export declare namespace ChatChannel {
|
|
|
152
134
|
}
|
|
153
135
|
const visit: <T>(value: ChatChannel, visitor: Visitor<T>) => T;
|
|
154
136
|
}
|
|
155
|
-
|
|
156
137
|
export declare type Condition =
|
|
157
138
|
| Condition.AfterMember
|
|
158
139
|
| Condition.BeforeMember
|
|
@@ -165,14 +146,12 @@ export declare namespace Condition {
|
|
|
165
146
|
equals?: never;
|
|
166
147
|
$unknown?: never;
|
|
167
148
|
}
|
|
168
|
-
|
|
169
149
|
interface AfterMember {
|
|
170
150
|
before?: never;
|
|
171
151
|
after: Date;
|
|
172
152
|
equals?: never;
|
|
173
153
|
$unknown?: never;
|
|
174
154
|
}
|
|
175
|
-
|
|
176
155
|
interface EqualsMember {
|
|
177
156
|
before?: never;
|
|
178
157
|
after?: never;
|
|
@@ -200,36 +179,27 @@ export declare enum ResourceType {
|
|
|
200
179
|
RESPONSE_PLAN = "RESPONSE_PLAN",
|
|
201
180
|
TIMELINE_EVENT = "TIMELINE_EVENT",
|
|
202
181
|
}
|
|
203
|
-
|
|
204
182
|
export declare class ConflictException extends __BaseException {
|
|
205
183
|
readonly name: "ConflictException";
|
|
206
184
|
readonly $fault: "client";
|
|
207
|
-
|
|
208
185
|
resourceIdentifier?: string;
|
|
209
|
-
|
|
210
186
|
resourceType?: ResourceType | string;
|
|
211
|
-
|
|
212
187
|
retryAfter?: Date;
|
|
213
|
-
|
|
214
188
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
215
189
|
}
|
|
216
|
-
|
|
217
190
|
export interface RegionMapInputValue {
|
|
218
191
|
sseKmsKeyId?: string;
|
|
219
192
|
}
|
|
220
193
|
export interface CreateReplicationSetInput {
|
|
221
194
|
regions: Record<string, RegionMapInputValue> | undefined;
|
|
222
|
-
|
|
223
195
|
clientToken?: string;
|
|
224
196
|
}
|
|
225
197
|
export interface CreateReplicationSetOutput {
|
|
226
198
|
arn: string | undefined;
|
|
227
199
|
}
|
|
228
|
-
|
|
229
200
|
export declare class InternalServerException extends __BaseException {
|
|
230
201
|
readonly name: "InternalServerException";
|
|
231
202
|
readonly $fault: "server";
|
|
232
|
-
|
|
233
203
|
constructor(
|
|
234
204
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
235
205
|
);
|
|
@@ -237,46 +207,33 @@ export declare class InternalServerException extends __BaseException {
|
|
|
237
207
|
export declare enum ServiceCode {
|
|
238
208
|
SSM_INCIDENTS = "ssm-incidents",
|
|
239
209
|
}
|
|
240
|
-
|
|
241
210
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
242
211
|
readonly name: "ServiceQuotaExceededException";
|
|
243
212
|
readonly $fault: "client";
|
|
244
|
-
|
|
245
213
|
resourceIdentifier?: string;
|
|
246
|
-
|
|
247
214
|
resourceType?: ResourceType | string;
|
|
248
|
-
|
|
249
215
|
serviceCode: ServiceCode | string | undefined;
|
|
250
|
-
|
|
251
216
|
quotaCode: string | undefined;
|
|
252
|
-
|
|
253
217
|
constructor(
|
|
254
218
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
255
219
|
);
|
|
256
220
|
}
|
|
257
|
-
|
|
258
221
|
export declare class ThrottlingException extends __BaseException {
|
|
259
222
|
readonly name: "ThrottlingException";
|
|
260
223
|
readonly $fault: "client";
|
|
261
|
-
|
|
262
224
|
serviceCode: ServiceCode | string | undefined;
|
|
263
|
-
|
|
264
225
|
quotaCode: string | undefined;
|
|
265
|
-
|
|
266
226
|
constructor(
|
|
267
227
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
268
228
|
);
|
|
269
229
|
}
|
|
270
|
-
|
|
271
230
|
export declare class ValidationException extends __BaseException {
|
|
272
231
|
readonly name: "ValidationException";
|
|
273
232
|
readonly $fault: "client";
|
|
274
|
-
|
|
275
233
|
constructor(
|
|
276
234
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
277
235
|
);
|
|
278
236
|
}
|
|
279
|
-
|
|
280
237
|
export declare type NotificationTargetItem =
|
|
281
238
|
| NotificationTargetItem.SnsTopicArnMember
|
|
282
239
|
| NotificationTargetItem.$UnknownMember;
|
|
@@ -295,74 +252,51 @@ export declare namespace NotificationTargetItem {
|
|
|
295
252
|
}
|
|
296
253
|
const visit: <T>(value: NotificationTargetItem, visitor: Visitor<T>) => T;
|
|
297
254
|
}
|
|
298
|
-
|
|
299
255
|
export interface IncidentTemplate {
|
|
300
256
|
title: string | undefined;
|
|
301
|
-
|
|
302
257
|
impact: number | undefined;
|
|
303
|
-
|
|
304
258
|
summary?: string;
|
|
305
|
-
|
|
306
259
|
dedupeString?: string;
|
|
307
|
-
|
|
308
260
|
notificationTargets?: NotificationTargetItem[];
|
|
309
|
-
|
|
310
261
|
incidentTags?: Record<string, string>;
|
|
311
262
|
}
|
|
312
263
|
export interface CreateResponsePlanInput {
|
|
313
264
|
clientToken?: string;
|
|
314
|
-
|
|
315
265
|
name: string | undefined;
|
|
316
|
-
|
|
317
266
|
displayName?: string;
|
|
318
|
-
|
|
319
267
|
incidentTemplate: IncidentTemplate | undefined;
|
|
320
|
-
|
|
321
268
|
chatChannel?: ChatChannel;
|
|
322
|
-
|
|
323
269
|
engagements?: string[];
|
|
324
|
-
|
|
325
270
|
actions?: Action[];
|
|
326
|
-
|
|
327
271
|
tags?: Record<string, string>;
|
|
328
272
|
}
|
|
329
273
|
export interface CreateResponsePlanOutput {
|
|
330
274
|
arn: string | undefined;
|
|
331
275
|
}
|
|
332
|
-
|
|
333
276
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
334
277
|
readonly name: "ResourceNotFoundException";
|
|
335
278
|
readonly $fault: "client";
|
|
336
|
-
|
|
337
279
|
resourceIdentifier?: string;
|
|
338
|
-
|
|
339
280
|
resourceType?: ResourceType | string;
|
|
340
|
-
|
|
341
281
|
constructor(
|
|
342
282
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
343
283
|
);
|
|
344
284
|
}
|
|
345
285
|
export interface CreateTimelineEventInput {
|
|
346
286
|
clientToken?: string;
|
|
347
|
-
|
|
348
287
|
incidentRecordArn: string | undefined;
|
|
349
|
-
|
|
350
288
|
eventTime: Date | undefined;
|
|
351
|
-
|
|
352
289
|
eventType: string | undefined;
|
|
353
|
-
|
|
354
290
|
eventData: string | undefined;
|
|
355
291
|
}
|
|
356
292
|
export interface CreateTimelineEventOutput {
|
|
357
293
|
incidentRecordArn: string | undefined;
|
|
358
|
-
|
|
359
294
|
eventId: string | undefined;
|
|
360
295
|
}
|
|
361
296
|
export interface DeleteIncidentRecordInput {
|
|
362
297
|
arn: string | undefined;
|
|
363
298
|
}
|
|
364
299
|
export interface DeleteIncidentRecordOutput {}
|
|
365
|
-
|
|
366
300
|
export interface DeleteRegionAction {
|
|
367
301
|
regionName: string | undefined;
|
|
368
302
|
}
|
|
@@ -372,7 +306,6 @@ export interface DeleteReplicationSetInput {
|
|
|
372
306
|
export interface DeleteReplicationSetOutput {}
|
|
373
307
|
export interface DeleteResourcePolicyInput {
|
|
374
308
|
resourceArn: string | undefined;
|
|
375
|
-
|
|
376
309
|
policyId: string | undefined;
|
|
377
310
|
}
|
|
378
311
|
export interface DeleteResourcePolicyOutput {}
|
|
@@ -382,73 +315,47 @@ export interface DeleteResponsePlanInput {
|
|
|
382
315
|
export interface DeleteResponsePlanOutput {}
|
|
383
316
|
export interface DeleteTimelineEventInput {
|
|
384
317
|
incidentRecordArn: string | undefined;
|
|
385
|
-
|
|
386
318
|
eventId: string | undefined;
|
|
387
319
|
}
|
|
388
320
|
export interface DeleteTimelineEventOutput {}
|
|
389
|
-
|
|
390
321
|
export interface EventSummary {
|
|
391
322
|
incidentRecordArn: string | undefined;
|
|
392
|
-
|
|
393
323
|
eventId: string | undefined;
|
|
394
|
-
|
|
395
324
|
eventTime: Date | undefined;
|
|
396
|
-
|
|
397
325
|
eventUpdatedTime: Date | undefined;
|
|
398
|
-
|
|
399
326
|
eventType: string | undefined;
|
|
400
327
|
}
|
|
401
|
-
|
|
402
328
|
export interface Filter {
|
|
403
329
|
key: string | undefined;
|
|
404
|
-
|
|
405
330
|
condition: Condition | undefined;
|
|
406
331
|
}
|
|
407
332
|
export interface GetIncidentRecordInput {
|
|
408
333
|
arn: string | undefined;
|
|
409
334
|
}
|
|
410
|
-
|
|
411
335
|
export interface IncidentRecordSource {
|
|
412
336
|
createdBy: string | undefined;
|
|
413
|
-
|
|
414
337
|
invokedBy?: string;
|
|
415
|
-
|
|
416
338
|
resourceArn?: string;
|
|
417
|
-
|
|
418
339
|
source: string | undefined;
|
|
419
340
|
}
|
|
420
341
|
export declare enum IncidentRecordStatus {
|
|
421
342
|
OPEN = "OPEN",
|
|
422
343
|
RESOLVED = "RESOLVED",
|
|
423
344
|
}
|
|
424
|
-
|
|
425
345
|
export interface IncidentRecord {
|
|
426
346
|
arn: string | undefined;
|
|
427
|
-
|
|
428
347
|
title: string | undefined;
|
|
429
|
-
|
|
430
348
|
summary?: string;
|
|
431
|
-
|
|
432
349
|
status: IncidentRecordStatus | string | undefined;
|
|
433
|
-
|
|
434
350
|
impact: number | undefined;
|
|
435
|
-
|
|
436
351
|
creationTime: Date | undefined;
|
|
437
|
-
|
|
438
352
|
resolvedTime?: Date;
|
|
439
|
-
|
|
440
353
|
lastModifiedTime: Date | undefined;
|
|
441
|
-
|
|
442
354
|
lastModifiedBy: string | undefined;
|
|
443
|
-
|
|
444
355
|
automationExecutions?: AutomationExecution[];
|
|
445
|
-
|
|
446
356
|
incidentRecordSource: IncidentRecordSource | undefined;
|
|
447
|
-
|
|
448
357
|
dedupeString: string | undefined;
|
|
449
|
-
|
|
450
358
|
chatChannel?: ChatChannel;
|
|
451
|
-
|
|
452
359
|
notificationTargets?: NotificationTargetItem[];
|
|
453
360
|
}
|
|
454
361
|
export interface GetIncidentRecordOutput {
|
|
@@ -459,50 +366,31 @@ export interface GetReplicationSetInput {
|
|
|
459
366
|
}
|
|
460
367
|
export declare enum RegionStatus {
|
|
461
368
|
ACTIVE = "ACTIVE",
|
|
462
|
-
|
|
463
369
|
CREATING = "CREATING",
|
|
464
|
-
|
|
465
370
|
DELETING = "DELETING",
|
|
466
|
-
|
|
467
371
|
FAILED = "FAILED",
|
|
468
372
|
}
|
|
469
|
-
|
|
470
373
|
export interface RegionInfo {
|
|
471
374
|
sseKmsKeyId?: string;
|
|
472
|
-
|
|
473
375
|
status: RegionStatus | string | undefined;
|
|
474
|
-
|
|
475
376
|
statusMessage?: string;
|
|
476
|
-
|
|
477
377
|
statusUpdateDateTime: Date | undefined;
|
|
478
378
|
}
|
|
479
379
|
export declare enum ReplicationSetStatus {
|
|
480
380
|
ACTIVE = "ACTIVE",
|
|
481
|
-
|
|
482
381
|
CREATING = "CREATING",
|
|
483
|
-
|
|
484
382
|
DELETING = "DELETING",
|
|
485
|
-
|
|
486
383
|
FAILED = "FAILED",
|
|
487
|
-
|
|
488
384
|
UPDATING = "UPDATING",
|
|
489
385
|
}
|
|
490
|
-
|
|
491
386
|
export interface ReplicationSet {
|
|
492
387
|
arn?: string;
|
|
493
|
-
|
|
494
388
|
regionMap: Record<string, RegionInfo> | undefined;
|
|
495
|
-
|
|
496
389
|
status: ReplicationSetStatus | string | undefined;
|
|
497
|
-
|
|
498
390
|
deletionProtected: boolean | undefined;
|
|
499
|
-
|
|
500
391
|
createdTime: Date | undefined;
|
|
501
|
-
|
|
502
392
|
createdBy: string | undefined;
|
|
503
|
-
|
|
504
393
|
lastModifiedTime: Date | undefined;
|
|
505
|
-
|
|
506
394
|
lastModifiedBy: string | undefined;
|
|
507
395
|
}
|
|
508
396
|
export interface GetReplicationSetOutput {
|
|
@@ -510,22 +398,16 @@ export interface GetReplicationSetOutput {
|
|
|
510
398
|
}
|
|
511
399
|
export interface GetResourcePoliciesInput {
|
|
512
400
|
resourceArn: string | undefined;
|
|
513
|
-
|
|
514
401
|
maxResults?: number;
|
|
515
|
-
|
|
516
402
|
nextToken?: string;
|
|
517
403
|
}
|
|
518
|
-
|
|
519
404
|
export interface ResourcePolicy {
|
|
520
405
|
policyDocument: string | undefined;
|
|
521
|
-
|
|
522
406
|
policyId: string | undefined;
|
|
523
|
-
|
|
524
407
|
ramResourceShareRegion: string | undefined;
|
|
525
408
|
}
|
|
526
409
|
export interface GetResourcePoliciesOutput {
|
|
527
410
|
resourcePolicies: ResourcePolicy[] | undefined;
|
|
528
|
-
|
|
529
411
|
nextToken?: string;
|
|
530
412
|
}
|
|
531
413
|
export interface GetResponsePlanInput {
|
|
@@ -533,55 +415,35 @@ export interface GetResponsePlanInput {
|
|
|
533
415
|
}
|
|
534
416
|
export interface GetResponsePlanOutput {
|
|
535
417
|
arn: string | undefined;
|
|
536
|
-
|
|
537
418
|
name: string | undefined;
|
|
538
|
-
|
|
539
419
|
displayName?: string;
|
|
540
|
-
|
|
541
420
|
incidentTemplate: IncidentTemplate | undefined;
|
|
542
|
-
|
|
543
421
|
chatChannel?: ChatChannel;
|
|
544
|
-
|
|
545
422
|
engagements?: string[];
|
|
546
|
-
|
|
547
423
|
actions?: Action[];
|
|
548
424
|
}
|
|
549
425
|
export interface GetTimelineEventInput {
|
|
550
426
|
incidentRecordArn: string | undefined;
|
|
551
|
-
|
|
552
427
|
eventId: string | undefined;
|
|
553
428
|
}
|
|
554
|
-
|
|
555
429
|
export interface TimelineEvent {
|
|
556
430
|
incidentRecordArn: string | undefined;
|
|
557
|
-
|
|
558
431
|
eventId: string | undefined;
|
|
559
|
-
|
|
560
432
|
eventTime: Date | undefined;
|
|
561
|
-
|
|
562
433
|
eventUpdatedTime: Date | undefined;
|
|
563
|
-
|
|
564
434
|
eventType: string | undefined;
|
|
565
|
-
|
|
566
435
|
eventData: string | undefined;
|
|
567
436
|
}
|
|
568
437
|
export interface GetTimelineEventOutput {
|
|
569
438
|
event: TimelineEvent | undefined;
|
|
570
439
|
}
|
|
571
|
-
|
|
572
440
|
export interface IncidentRecordSummary {
|
|
573
441
|
arn: string | undefined;
|
|
574
|
-
|
|
575
442
|
title: string | undefined;
|
|
576
|
-
|
|
577
443
|
status: IncidentRecordStatus | string | undefined;
|
|
578
|
-
|
|
579
444
|
impact: number | undefined;
|
|
580
|
-
|
|
581
445
|
creationTime: Date | undefined;
|
|
582
|
-
|
|
583
446
|
resolvedTime?: Date;
|
|
584
|
-
|
|
585
447
|
incidentRecordSource: IncidentRecordSource | undefined;
|
|
586
448
|
}
|
|
587
449
|
export declare enum ItemType {
|
|
@@ -594,7 +456,6 @@ export declare enum ItemType {
|
|
|
594
456
|
OTHER = "OTHER",
|
|
595
457
|
PARENT = "PARENT",
|
|
596
458
|
}
|
|
597
|
-
|
|
598
459
|
export declare type ItemValue =
|
|
599
460
|
| ItemValue.ArnMember
|
|
600
461
|
| ItemValue.MetricDefinitionMember
|
|
@@ -607,14 +468,12 @@ export declare namespace ItemValue {
|
|
|
607
468
|
metricDefinition?: never;
|
|
608
469
|
$unknown?: never;
|
|
609
470
|
}
|
|
610
|
-
|
|
611
471
|
interface UrlMember {
|
|
612
472
|
arn?: never;
|
|
613
473
|
url: string;
|
|
614
474
|
metricDefinition?: never;
|
|
615
475
|
$unknown?: never;
|
|
616
476
|
}
|
|
617
|
-
|
|
618
477
|
interface MetricDefinitionMember {
|
|
619
478
|
arn?: never;
|
|
620
479
|
url?: never;
|
|
@@ -635,68 +494,51 @@ export declare namespace ItemValue {
|
|
|
635
494
|
}
|
|
636
495
|
const visit: <T>(value: ItemValue, visitor: Visitor<T>) => T;
|
|
637
496
|
}
|
|
638
|
-
|
|
639
497
|
export interface ItemIdentifier {
|
|
640
498
|
value: ItemValue | undefined;
|
|
641
|
-
|
|
642
499
|
type: ItemType | string | undefined;
|
|
643
500
|
}
|
|
644
501
|
export interface ListIncidentRecordsInput {
|
|
645
502
|
filters?: Filter[];
|
|
646
|
-
|
|
647
503
|
maxResults?: number;
|
|
648
|
-
|
|
649
504
|
nextToken?: string;
|
|
650
505
|
}
|
|
651
506
|
export interface ListIncidentRecordsOutput {
|
|
652
507
|
incidentRecordSummaries: IncidentRecordSummary[] | undefined;
|
|
653
|
-
|
|
654
508
|
nextToken?: string;
|
|
655
509
|
}
|
|
656
510
|
export interface ListRelatedItemsInput {
|
|
657
511
|
incidentRecordArn: string | undefined;
|
|
658
|
-
|
|
659
512
|
maxResults?: number;
|
|
660
|
-
|
|
661
513
|
nextToken?: string;
|
|
662
514
|
}
|
|
663
|
-
|
|
664
515
|
export interface RelatedItem {
|
|
665
516
|
identifier: ItemIdentifier | undefined;
|
|
666
|
-
|
|
667
517
|
title?: string;
|
|
668
518
|
}
|
|
669
519
|
export interface ListRelatedItemsOutput {
|
|
670
520
|
relatedItems: RelatedItem[] | undefined;
|
|
671
|
-
|
|
672
521
|
nextToken?: string;
|
|
673
522
|
}
|
|
674
523
|
export interface ListReplicationSetsInput {
|
|
675
524
|
maxResults?: number;
|
|
676
|
-
|
|
677
525
|
nextToken?: string;
|
|
678
526
|
}
|
|
679
527
|
export interface ListReplicationSetsOutput {
|
|
680
528
|
replicationSetArns: string[] | undefined;
|
|
681
|
-
|
|
682
529
|
nextToken?: string;
|
|
683
530
|
}
|
|
684
531
|
export interface ListResponsePlansInput {
|
|
685
532
|
maxResults?: number;
|
|
686
|
-
|
|
687
533
|
nextToken?: string;
|
|
688
534
|
}
|
|
689
|
-
|
|
690
535
|
export interface ResponsePlanSummary {
|
|
691
536
|
arn: string | undefined;
|
|
692
|
-
|
|
693
537
|
name: string | undefined;
|
|
694
|
-
|
|
695
538
|
displayName?: string;
|
|
696
539
|
}
|
|
697
540
|
export interface ListResponsePlansOutput {
|
|
698
541
|
responsePlanSummaries: ResponsePlanSummary[] | undefined;
|
|
699
|
-
|
|
700
542
|
nextToken?: string;
|
|
701
543
|
}
|
|
702
544
|
export interface ListTagsForResourceRequest {
|
|
@@ -714,31 +556,23 @@ export declare enum SortOrder {
|
|
|
714
556
|
}
|
|
715
557
|
export interface ListTimelineEventsInput {
|
|
716
558
|
incidentRecordArn: string | undefined;
|
|
717
|
-
|
|
718
559
|
filters?: Filter[];
|
|
719
|
-
|
|
720
560
|
sortBy?: TimelineEventSort | string;
|
|
721
|
-
|
|
722
561
|
sortOrder?: SortOrder | string;
|
|
723
|
-
|
|
724
562
|
maxResults?: number;
|
|
725
|
-
|
|
726
563
|
nextToken?: string;
|
|
727
564
|
}
|
|
728
565
|
export interface ListTimelineEventsOutput {
|
|
729
566
|
eventSummaries: EventSummary[] | undefined;
|
|
730
|
-
|
|
731
567
|
nextToken?: string;
|
|
732
568
|
}
|
|
733
569
|
export interface PutResourcePolicyInput {
|
|
734
570
|
resourceArn: string | undefined;
|
|
735
|
-
|
|
736
571
|
policy: string | undefined;
|
|
737
572
|
}
|
|
738
573
|
export interface PutResourcePolicyOutput {
|
|
739
574
|
policyId: string | undefined;
|
|
740
575
|
}
|
|
741
|
-
|
|
742
576
|
export declare type RelatedItemsUpdate =
|
|
743
577
|
| RelatedItemsUpdate.ItemToAddMember
|
|
744
578
|
| RelatedItemsUpdate.ItemToRemoveMember
|
|
@@ -749,7 +583,6 @@ export declare namespace RelatedItemsUpdate {
|
|
|
749
583
|
itemToRemove?: never;
|
|
750
584
|
$unknown?: never;
|
|
751
585
|
}
|
|
752
|
-
|
|
753
586
|
interface ItemToRemoveMember {
|
|
754
587
|
itemToAdd?: never;
|
|
755
588
|
itemToRemove: ItemIdentifier;
|
|
@@ -767,27 +600,18 @@ export declare namespace RelatedItemsUpdate {
|
|
|
767
600
|
}
|
|
768
601
|
const visit: <T>(value: RelatedItemsUpdate, visitor: Visitor<T>) => T;
|
|
769
602
|
}
|
|
770
|
-
|
|
771
603
|
export interface TriggerDetails {
|
|
772
604
|
source: string | undefined;
|
|
773
|
-
|
|
774
605
|
triggerArn?: string;
|
|
775
|
-
|
|
776
606
|
timestamp: Date | undefined;
|
|
777
|
-
|
|
778
607
|
rawData?: string;
|
|
779
608
|
}
|
|
780
609
|
export interface StartIncidentInput {
|
|
781
610
|
clientToken?: string;
|
|
782
|
-
|
|
783
611
|
responsePlanArn: string | undefined;
|
|
784
|
-
|
|
785
612
|
title?: string;
|
|
786
|
-
|
|
787
613
|
impact?: number;
|
|
788
|
-
|
|
789
614
|
triggerDetails?: TriggerDetails;
|
|
790
|
-
|
|
791
615
|
relatedItems?: RelatedItem[];
|
|
792
616
|
}
|
|
793
617
|
export interface StartIncidentOutput {
|
|
@@ -795,51 +619,37 @@ export interface StartIncidentOutput {
|
|
|
795
619
|
}
|
|
796
620
|
export interface TagResourceRequest {
|
|
797
621
|
resourceArn: string | undefined;
|
|
798
|
-
|
|
799
622
|
tags: Record<string, string> | undefined;
|
|
800
623
|
}
|
|
801
624
|
export interface TagResourceResponse {}
|
|
802
625
|
export interface UntagResourceRequest {
|
|
803
626
|
resourceArn: string | undefined;
|
|
804
|
-
|
|
805
627
|
tagKeys: string[] | undefined;
|
|
806
628
|
}
|
|
807
629
|
export interface UntagResourceResponse {}
|
|
808
630
|
export interface UpdateDeletionProtectionInput {
|
|
809
631
|
arn: string | undefined;
|
|
810
|
-
|
|
811
632
|
deletionProtected: boolean | undefined;
|
|
812
|
-
|
|
813
633
|
clientToken?: string;
|
|
814
634
|
}
|
|
815
635
|
export interface UpdateDeletionProtectionOutput {}
|
|
816
636
|
export interface UpdateIncidentRecordInput {
|
|
817
637
|
clientToken?: string;
|
|
818
|
-
|
|
819
638
|
arn: string | undefined;
|
|
820
|
-
|
|
821
639
|
title?: string;
|
|
822
|
-
|
|
823
640
|
summary?: string;
|
|
824
|
-
|
|
825
641
|
impact?: number;
|
|
826
|
-
|
|
827
642
|
status?: IncidentRecordStatus | string;
|
|
828
|
-
|
|
829
643
|
chatChannel?: ChatChannel;
|
|
830
|
-
|
|
831
644
|
notificationTargets?: NotificationTargetItem[];
|
|
832
645
|
}
|
|
833
646
|
export interface UpdateIncidentRecordOutput {}
|
|
834
647
|
export interface UpdateRelatedItemsInput {
|
|
835
648
|
clientToken?: string;
|
|
836
|
-
|
|
837
649
|
incidentRecordArn: string | undefined;
|
|
838
|
-
|
|
839
650
|
relatedItemsUpdate: RelatedItemsUpdate | undefined;
|
|
840
651
|
}
|
|
841
652
|
export interface UpdateRelatedItemsOutput {}
|
|
842
|
-
|
|
843
653
|
export declare type UpdateReplicationSetAction =
|
|
844
654
|
| UpdateReplicationSetAction.AddRegionActionMember
|
|
845
655
|
| UpdateReplicationSetAction.DeleteRegionActionMember
|
|
@@ -850,7 +660,6 @@ export declare namespace UpdateReplicationSetAction {
|
|
|
850
660
|
deleteRegionAction?: never;
|
|
851
661
|
$unknown?: never;
|
|
852
662
|
}
|
|
853
|
-
|
|
854
663
|
interface DeleteRegionActionMember {
|
|
855
664
|
addRegionAction?: never;
|
|
856
665
|
deleteRegionAction: DeleteRegionAction;
|
|
@@ -870,381 +679,276 @@ export declare namespace UpdateReplicationSetAction {
|
|
|
870
679
|
}
|
|
871
680
|
export interface UpdateReplicationSetInput {
|
|
872
681
|
arn: string | undefined;
|
|
873
|
-
|
|
874
682
|
actions: UpdateReplicationSetAction[] | undefined;
|
|
875
|
-
|
|
876
683
|
clientToken?: string;
|
|
877
684
|
}
|
|
878
685
|
export interface UpdateReplicationSetOutput {}
|
|
879
686
|
export interface UpdateResponsePlanInput {
|
|
880
687
|
clientToken?: string;
|
|
881
|
-
|
|
882
688
|
arn: string | undefined;
|
|
883
|
-
|
|
884
689
|
displayName?: string;
|
|
885
|
-
|
|
886
690
|
incidentTemplateTitle?: string;
|
|
887
|
-
|
|
888
691
|
incidentTemplateImpact?: number;
|
|
889
|
-
|
|
890
692
|
incidentTemplateSummary?: string;
|
|
891
|
-
|
|
892
693
|
incidentTemplateDedupeString?: string;
|
|
893
|
-
|
|
894
694
|
incidentTemplateNotificationTargets?: NotificationTargetItem[];
|
|
895
|
-
|
|
896
695
|
chatChannel?: ChatChannel;
|
|
897
|
-
|
|
898
696
|
engagements?: string[];
|
|
899
|
-
|
|
900
697
|
actions?: Action[];
|
|
901
|
-
|
|
902
698
|
incidentTemplateTags?: Record<string, string>;
|
|
903
699
|
}
|
|
904
700
|
export interface UpdateResponsePlanOutput {}
|
|
905
701
|
export interface UpdateTimelineEventInput {
|
|
906
702
|
clientToken?: string;
|
|
907
|
-
|
|
908
703
|
incidentRecordArn: string | undefined;
|
|
909
|
-
|
|
910
704
|
eventId: string | undefined;
|
|
911
|
-
|
|
912
705
|
eventTime?: Date;
|
|
913
|
-
|
|
914
706
|
eventType?: string;
|
|
915
|
-
|
|
916
707
|
eventData?: string;
|
|
917
708
|
}
|
|
918
709
|
export interface UpdateTimelineEventOutput {}
|
|
919
|
-
|
|
920
710
|
export declare const DynamicSsmParameterValueFilterSensitiveLog: (
|
|
921
711
|
obj: DynamicSsmParameterValue
|
|
922
712
|
) => any;
|
|
923
|
-
|
|
924
713
|
export declare const SsmAutomationFilterSensitiveLog: (
|
|
925
714
|
obj: SsmAutomation
|
|
926
715
|
) => any;
|
|
927
|
-
|
|
928
716
|
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
929
|
-
|
|
930
717
|
export declare const AddRegionActionFilterSensitiveLog: (
|
|
931
718
|
obj: AddRegionAction
|
|
932
719
|
) => any;
|
|
933
|
-
|
|
934
720
|
export declare const AttributeValueListFilterSensitiveLog: (
|
|
935
721
|
obj: AttributeValueList
|
|
936
722
|
) => any;
|
|
937
|
-
|
|
938
723
|
export declare const AutomationExecutionFilterSensitiveLog: (
|
|
939
724
|
obj: AutomationExecution
|
|
940
725
|
) => any;
|
|
941
|
-
|
|
942
726
|
export declare const EmptyChatChannelFilterSensitiveLog: (
|
|
943
727
|
obj: EmptyChatChannel
|
|
944
728
|
) => any;
|
|
945
|
-
|
|
946
729
|
export declare const ChatChannelFilterSensitiveLog: (obj: ChatChannel) => any;
|
|
947
|
-
|
|
948
730
|
export declare const ConditionFilterSensitiveLog: (obj: Condition) => any;
|
|
949
|
-
|
|
950
731
|
export declare const RegionMapInputValueFilterSensitiveLog: (
|
|
951
732
|
obj: RegionMapInputValue
|
|
952
733
|
) => any;
|
|
953
|
-
|
|
954
734
|
export declare const CreateReplicationSetInputFilterSensitiveLog: (
|
|
955
735
|
obj: CreateReplicationSetInput
|
|
956
736
|
) => any;
|
|
957
|
-
|
|
958
737
|
export declare const CreateReplicationSetOutputFilterSensitiveLog: (
|
|
959
738
|
obj: CreateReplicationSetOutput
|
|
960
739
|
) => any;
|
|
961
|
-
|
|
962
740
|
export declare const NotificationTargetItemFilterSensitiveLog: (
|
|
963
741
|
obj: NotificationTargetItem
|
|
964
742
|
) => any;
|
|
965
|
-
|
|
966
743
|
export declare const IncidentTemplateFilterSensitiveLog: (
|
|
967
744
|
obj: IncidentTemplate
|
|
968
745
|
) => any;
|
|
969
|
-
|
|
970
746
|
export declare const CreateResponsePlanInputFilterSensitiveLog: (
|
|
971
747
|
obj: CreateResponsePlanInput
|
|
972
748
|
) => any;
|
|
973
|
-
|
|
974
749
|
export declare const CreateResponsePlanOutputFilterSensitiveLog: (
|
|
975
750
|
obj: CreateResponsePlanOutput
|
|
976
751
|
) => any;
|
|
977
|
-
|
|
978
752
|
export declare const CreateTimelineEventInputFilterSensitiveLog: (
|
|
979
753
|
obj: CreateTimelineEventInput
|
|
980
754
|
) => any;
|
|
981
|
-
|
|
982
755
|
export declare const CreateTimelineEventOutputFilterSensitiveLog: (
|
|
983
756
|
obj: CreateTimelineEventOutput
|
|
984
757
|
) => any;
|
|
985
|
-
|
|
986
758
|
export declare const DeleteIncidentRecordInputFilterSensitiveLog: (
|
|
987
759
|
obj: DeleteIncidentRecordInput
|
|
988
760
|
) => any;
|
|
989
|
-
|
|
990
761
|
export declare const DeleteIncidentRecordOutputFilterSensitiveLog: (
|
|
991
762
|
obj: DeleteIncidentRecordOutput
|
|
992
763
|
) => any;
|
|
993
|
-
|
|
994
764
|
export declare const DeleteRegionActionFilterSensitiveLog: (
|
|
995
765
|
obj: DeleteRegionAction
|
|
996
766
|
) => any;
|
|
997
|
-
|
|
998
767
|
export declare const DeleteReplicationSetInputFilterSensitiveLog: (
|
|
999
768
|
obj: DeleteReplicationSetInput
|
|
1000
769
|
) => any;
|
|
1001
|
-
|
|
1002
770
|
export declare const DeleteReplicationSetOutputFilterSensitiveLog: (
|
|
1003
771
|
obj: DeleteReplicationSetOutput
|
|
1004
772
|
) => any;
|
|
1005
|
-
|
|
1006
773
|
export declare const DeleteResourcePolicyInputFilterSensitiveLog: (
|
|
1007
774
|
obj: DeleteResourcePolicyInput
|
|
1008
775
|
) => any;
|
|
1009
|
-
|
|
1010
776
|
export declare const DeleteResourcePolicyOutputFilterSensitiveLog: (
|
|
1011
777
|
obj: DeleteResourcePolicyOutput
|
|
1012
778
|
) => any;
|
|
1013
|
-
|
|
1014
779
|
export declare const DeleteResponsePlanInputFilterSensitiveLog: (
|
|
1015
780
|
obj: DeleteResponsePlanInput
|
|
1016
781
|
) => any;
|
|
1017
|
-
|
|
1018
782
|
export declare const DeleteResponsePlanOutputFilterSensitiveLog: (
|
|
1019
783
|
obj: DeleteResponsePlanOutput
|
|
1020
784
|
) => any;
|
|
1021
|
-
|
|
1022
785
|
export declare const DeleteTimelineEventInputFilterSensitiveLog: (
|
|
1023
786
|
obj: DeleteTimelineEventInput
|
|
1024
787
|
) => any;
|
|
1025
|
-
|
|
1026
788
|
export declare const DeleteTimelineEventOutputFilterSensitiveLog: (
|
|
1027
789
|
obj: DeleteTimelineEventOutput
|
|
1028
790
|
) => any;
|
|
1029
|
-
|
|
1030
791
|
export declare const EventSummaryFilterSensitiveLog: (obj: EventSummary) => any;
|
|
1031
|
-
|
|
1032
792
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1033
|
-
|
|
1034
793
|
export declare const GetIncidentRecordInputFilterSensitiveLog: (
|
|
1035
794
|
obj: GetIncidentRecordInput
|
|
1036
795
|
) => any;
|
|
1037
|
-
|
|
1038
796
|
export declare const IncidentRecordSourceFilterSensitiveLog: (
|
|
1039
797
|
obj: IncidentRecordSource
|
|
1040
798
|
) => any;
|
|
1041
|
-
|
|
1042
799
|
export declare const IncidentRecordFilterSensitiveLog: (
|
|
1043
800
|
obj: IncidentRecord
|
|
1044
801
|
) => any;
|
|
1045
|
-
|
|
1046
802
|
export declare const GetIncidentRecordOutputFilterSensitiveLog: (
|
|
1047
803
|
obj: GetIncidentRecordOutput
|
|
1048
804
|
) => any;
|
|
1049
|
-
|
|
1050
805
|
export declare const GetReplicationSetInputFilterSensitiveLog: (
|
|
1051
806
|
obj: GetReplicationSetInput
|
|
1052
807
|
) => any;
|
|
1053
|
-
|
|
1054
808
|
export declare const RegionInfoFilterSensitiveLog: (obj: RegionInfo) => any;
|
|
1055
|
-
|
|
1056
809
|
export declare const ReplicationSetFilterSensitiveLog: (
|
|
1057
810
|
obj: ReplicationSet
|
|
1058
811
|
) => any;
|
|
1059
|
-
|
|
1060
812
|
export declare const GetReplicationSetOutputFilterSensitiveLog: (
|
|
1061
813
|
obj: GetReplicationSetOutput
|
|
1062
814
|
) => any;
|
|
1063
|
-
|
|
1064
815
|
export declare const GetResourcePoliciesInputFilterSensitiveLog: (
|
|
1065
816
|
obj: GetResourcePoliciesInput
|
|
1066
817
|
) => any;
|
|
1067
|
-
|
|
1068
818
|
export declare const ResourcePolicyFilterSensitiveLog: (
|
|
1069
819
|
obj: ResourcePolicy
|
|
1070
820
|
) => any;
|
|
1071
|
-
|
|
1072
821
|
export declare const GetResourcePoliciesOutputFilterSensitiveLog: (
|
|
1073
822
|
obj: GetResourcePoliciesOutput
|
|
1074
823
|
) => any;
|
|
1075
|
-
|
|
1076
824
|
export declare const GetResponsePlanInputFilterSensitiveLog: (
|
|
1077
825
|
obj: GetResponsePlanInput
|
|
1078
826
|
) => any;
|
|
1079
|
-
|
|
1080
827
|
export declare const GetResponsePlanOutputFilterSensitiveLog: (
|
|
1081
828
|
obj: GetResponsePlanOutput
|
|
1082
829
|
) => any;
|
|
1083
|
-
|
|
1084
830
|
export declare const GetTimelineEventInputFilterSensitiveLog: (
|
|
1085
831
|
obj: GetTimelineEventInput
|
|
1086
832
|
) => any;
|
|
1087
|
-
|
|
1088
833
|
export declare const TimelineEventFilterSensitiveLog: (
|
|
1089
834
|
obj: TimelineEvent
|
|
1090
835
|
) => any;
|
|
1091
|
-
|
|
1092
836
|
export declare const GetTimelineEventOutputFilterSensitiveLog: (
|
|
1093
837
|
obj: GetTimelineEventOutput
|
|
1094
838
|
) => any;
|
|
1095
|
-
|
|
1096
839
|
export declare const IncidentRecordSummaryFilterSensitiveLog: (
|
|
1097
840
|
obj: IncidentRecordSummary
|
|
1098
841
|
) => any;
|
|
1099
|
-
|
|
1100
842
|
export declare const ItemValueFilterSensitiveLog: (obj: ItemValue) => any;
|
|
1101
|
-
|
|
1102
843
|
export declare const ItemIdentifierFilterSensitiveLog: (
|
|
1103
844
|
obj: ItemIdentifier
|
|
1104
845
|
) => any;
|
|
1105
|
-
|
|
1106
846
|
export declare const ListIncidentRecordsInputFilterSensitiveLog: (
|
|
1107
847
|
obj: ListIncidentRecordsInput
|
|
1108
848
|
) => any;
|
|
1109
|
-
|
|
1110
849
|
export declare const ListIncidentRecordsOutputFilterSensitiveLog: (
|
|
1111
850
|
obj: ListIncidentRecordsOutput
|
|
1112
851
|
) => any;
|
|
1113
|
-
|
|
1114
852
|
export declare const ListRelatedItemsInputFilterSensitiveLog: (
|
|
1115
853
|
obj: ListRelatedItemsInput
|
|
1116
854
|
) => any;
|
|
1117
|
-
|
|
1118
855
|
export declare const RelatedItemFilterSensitiveLog: (obj: RelatedItem) => any;
|
|
1119
|
-
|
|
1120
856
|
export declare const ListRelatedItemsOutputFilterSensitiveLog: (
|
|
1121
857
|
obj: ListRelatedItemsOutput
|
|
1122
858
|
) => any;
|
|
1123
|
-
|
|
1124
859
|
export declare const ListReplicationSetsInputFilterSensitiveLog: (
|
|
1125
860
|
obj: ListReplicationSetsInput
|
|
1126
861
|
) => any;
|
|
1127
|
-
|
|
1128
862
|
export declare const ListReplicationSetsOutputFilterSensitiveLog: (
|
|
1129
863
|
obj: ListReplicationSetsOutput
|
|
1130
864
|
) => any;
|
|
1131
|
-
|
|
1132
865
|
export declare const ListResponsePlansInputFilterSensitiveLog: (
|
|
1133
866
|
obj: ListResponsePlansInput
|
|
1134
867
|
) => any;
|
|
1135
|
-
|
|
1136
868
|
export declare const ResponsePlanSummaryFilterSensitiveLog: (
|
|
1137
869
|
obj: ResponsePlanSummary
|
|
1138
870
|
) => any;
|
|
1139
|
-
|
|
1140
871
|
export declare const ListResponsePlansOutputFilterSensitiveLog: (
|
|
1141
872
|
obj: ListResponsePlansOutput
|
|
1142
873
|
) => any;
|
|
1143
|
-
|
|
1144
874
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1145
875
|
obj: ListTagsForResourceRequest
|
|
1146
876
|
) => any;
|
|
1147
|
-
|
|
1148
877
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1149
878
|
obj: ListTagsForResourceResponse
|
|
1150
879
|
) => any;
|
|
1151
|
-
|
|
1152
880
|
export declare const ListTimelineEventsInputFilterSensitiveLog: (
|
|
1153
881
|
obj: ListTimelineEventsInput
|
|
1154
882
|
) => any;
|
|
1155
|
-
|
|
1156
883
|
export declare const ListTimelineEventsOutputFilterSensitiveLog: (
|
|
1157
884
|
obj: ListTimelineEventsOutput
|
|
1158
885
|
) => any;
|
|
1159
|
-
|
|
1160
886
|
export declare const PutResourcePolicyInputFilterSensitiveLog: (
|
|
1161
887
|
obj: PutResourcePolicyInput
|
|
1162
888
|
) => any;
|
|
1163
|
-
|
|
1164
889
|
export declare const PutResourcePolicyOutputFilterSensitiveLog: (
|
|
1165
890
|
obj: PutResourcePolicyOutput
|
|
1166
891
|
) => any;
|
|
1167
|
-
|
|
1168
892
|
export declare const RelatedItemsUpdateFilterSensitiveLog: (
|
|
1169
893
|
obj: RelatedItemsUpdate
|
|
1170
894
|
) => any;
|
|
1171
|
-
|
|
1172
895
|
export declare const TriggerDetailsFilterSensitiveLog: (
|
|
1173
896
|
obj: TriggerDetails
|
|
1174
897
|
) => any;
|
|
1175
|
-
|
|
1176
898
|
export declare const StartIncidentInputFilterSensitiveLog: (
|
|
1177
899
|
obj: StartIncidentInput
|
|
1178
900
|
) => any;
|
|
1179
|
-
|
|
1180
901
|
export declare const StartIncidentOutputFilterSensitiveLog: (
|
|
1181
902
|
obj: StartIncidentOutput
|
|
1182
903
|
) => any;
|
|
1183
|
-
|
|
1184
904
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1185
905
|
obj: TagResourceRequest
|
|
1186
906
|
) => any;
|
|
1187
|
-
|
|
1188
907
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1189
908
|
obj: TagResourceResponse
|
|
1190
909
|
) => any;
|
|
1191
|
-
|
|
1192
910
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1193
911
|
obj: UntagResourceRequest
|
|
1194
912
|
) => any;
|
|
1195
|
-
|
|
1196
913
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1197
914
|
obj: UntagResourceResponse
|
|
1198
915
|
) => any;
|
|
1199
|
-
|
|
1200
916
|
export declare const UpdateDeletionProtectionInputFilterSensitiveLog: (
|
|
1201
917
|
obj: UpdateDeletionProtectionInput
|
|
1202
918
|
) => any;
|
|
1203
|
-
|
|
1204
919
|
export declare const UpdateDeletionProtectionOutputFilterSensitiveLog: (
|
|
1205
920
|
obj: UpdateDeletionProtectionOutput
|
|
1206
921
|
) => any;
|
|
1207
|
-
|
|
1208
922
|
export declare const UpdateIncidentRecordInputFilterSensitiveLog: (
|
|
1209
923
|
obj: UpdateIncidentRecordInput
|
|
1210
924
|
) => any;
|
|
1211
|
-
|
|
1212
925
|
export declare const UpdateIncidentRecordOutputFilterSensitiveLog: (
|
|
1213
926
|
obj: UpdateIncidentRecordOutput
|
|
1214
927
|
) => any;
|
|
1215
|
-
|
|
1216
928
|
export declare const UpdateRelatedItemsInputFilterSensitiveLog: (
|
|
1217
929
|
obj: UpdateRelatedItemsInput
|
|
1218
930
|
) => any;
|
|
1219
|
-
|
|
1220
931
|
export declare const UpdateRelatedItemsOutputFilterSensitiveLog: (
|
|
1221
932
|
obj: UpdateRelatedItemsOutput
|
|
1222
933
|
) => any;
|
|
1223
|
-
|
|
1224
934
|
export declare const UpdateReplicationSetActionFilterSensitiveLog: (
|
|
1225
935
|
obj: UpdateReplicationSetAction
|
|
1226
936
|
) => any;
|
|
1227
|
-
|
|
1228
937
|
export declare const UpdateReplicationSetInputFilterSensitiveLog: (
|
|
1229
938
|
obj: UpdateReplicationSetInput
|
|
1230
939
|
) => any;
|
|
1231
|
-
|
|
1232
940
|
export declare const UpdateReplicationSetOutputFilterSensitiveLog: (
|
|
1233
941
|
obj: UpdateReplicationSetOutput
|
|
1234
942
|
) => any;
|
|
1235
|
-
|
|
1236
943
|
export declare const UpdateResponsePlanInputFilterSensitiveLog: (
|
|
1237
944
|
obj: UpdateResponsePlanInput
|
|
1238
945
|
) => any;
|
|
1239
|
-
|
|
1240
946
|
export declare const UpdateResponsePlanOutputFilterSensitiveLog: (
|
|
1241
947
|
obj: UpdateResponsePlanOutput
|
|
1242
948
|
) => any;
|
|
1243
|
-
|
|
1244
949
|
export declare const UpdateTimelineEventInputFilterSensitiveLog: (
|
|
1245
950
|
obj: UpdateTimelineEventInput
|
|
1246
951
|
) => any;
|
|
1247
|
-
|
|
1248
952
|
export declare const UpdateTimelineEventOutputFilterSensitiveLog: (
|
|
1249
953
|
obj: UpdateTimelineEventOutput
|
|
1250
954
|
) => any;
|