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