@aws-sdk/client-ssm-incidents 3.169.0 → 3.170.0

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