@aws-sdk/client-ssm-incidents 3.130.0 → 3.141.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 (65) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateReplicationSetCommand.js +2 -2
  4. package/dist-cjs/commands/CreateResponsePlanCommand.js +2 -2
  5. package/dist-cjs/commands/CreateTimelineEventCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteIncidentRecordCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteReplicationSetCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteResponsePlanCommand.js +2 -2
  10. package/dist-cjs/commands/DeleteTimelineEventCommand.js +2 -2
  11. package/dist-cjs/commands/GetIncidentRecordCommand.js +2 -2
  12. package/dist-cjs/commands/GetReplicationSetCommand.js +2 -2
  13. package/dist-cjs/commands/GetResourcePoliciesCommand.js +2 -2
  14. package/dist-cjs/commands/GetResponsePlanCommand.js +2 -2
  15. package/dist-cjs/commands/GetTimelineEventCommand.js +2 -2
  16. package/dist-cjs/commands/ListIncidentRecordsCommand.js +2 -2
  17. package/dist-cjs/commands/ListRelatedItemsCommand.js +2 -2
  18. package/dist-cjs/commands/ListReplicationSetsCommand.js +2 -2
  19. package/dist-cjs/commands/ListResponsePlansCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/ListTimelineEventsCommand.js +2 -2
  22. package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
  23. package/dist-cjs/commands/StartIncidentCommand.js +2 -2
  24. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  25. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateDeletionProtectionCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateIncidentRecordCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateRelatedItemsCommand.js +2 -2
  29. package/dist-cjs/commands/UpdateReplicationSetCommand.js +2 -2
  30. package/dist-cjs/commands/UpdateResponsePlanCommand.js +2 -2
  31. package/dist-cjs/commands/UpdateTimelineEventCommand.js +2 -2
  32. package/dist-cjs/models/models_0.js +438 -584
  33. package/dist-es/commands/CreateReplicationSetCommand.js +3 -3
  34. package/dist-es/commands/CreateResponsePlanCommand.js +3 -3
  35. package/dist-es/commands/CreateTimelineEventCommand.js +3 -3
  36. package/dist-es/commands/DeleteIncidentRecordCommand.js +3 -3
  37. package/dist-es/commands/DeleteReplicationSetCommand.js +3 -3
  38. package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
  39. package/dist-es/commands/DeleteResponsePlanCommand.js +3 -3
  40. package/dist-es/commands/DeleteTimelineEventCommand.js +3 -3
  41. package/dist-es/commands/GetIncidentRecordCommand.js +3 -3
  42. package/dist-es/commands/GetReplicationSetCommand.js +3 -3
  43. package/dist-es/commands/GetResourcePoliciesCommand.js +3 -3
  44. package/dist-es/commands/GetResponsePlanCommand.js +3 -3
  45. package/dist-es/commands/GetTimelineEventCommand.js +3 -3
  46. package/dist-es/commands/ListIncidentRecordsCommand.js +3 -3
  47. package/dist-es/commands/ListRelatedItemsCommand.js +3 -3
  48. package/dist-es/commands/ListReplicationSetsCommand.js +3 -3
  49. package/dist-es/commands/ListResponsePlansCommand.js +3 -3
  50. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  51. package/dist-es/commands/ListTimelineEventsCommand.js +3 -3
  52. package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
  53. package/dist-es/commands/StartIncidentCommand.js +3 -3
  54. package/dist-es/commands/TagResourceCommand.js +3 -3
  55. package/dist-es/commands/UntagResourceCommand.js +3 -3
  56. package/dist-es/commands/UpdateDeletionProtectionCommand.js +3 -3
  57. package/dist-es/commands/UpdateIncidentRecordCommand.js +3 -3
  58. package/dist-es/commands/UpdateRelatedItemsCommand.js +3 -3
  59. package/dist-es/commands/UpdateReplicationSetCommand.js +3 -3
  60. package/dist-es/commands/UpdateResponsePlanCommand.js +3 -3
  61. package/dist-es/commands/UpdateTimelineEventCommand.js +3 -3
  62. package/dist-es/models/models_0.js +181 -414
  63. package/dist-types/models/models_0.d.ts +348 -502
  64. package/dist-types/ts3.4/models/models_0.d.ts +174 -328
  65. package/package.json +7 -7
@@ -31,8 +31,6 @@ export declare namespace DynamicSsmParameterValue {
31
31
  _: (name: string, value: any) => T;
32
32
  }
33
33
  const visit: <T>(value: DynamicSsmParameterValue, visitor: Visitor<T>) => T;
34
-
35
- const filterSensitiveLog: (obj: DynamicSsmParameterValue) => any;
36
34
  }
37
35
  export declare enum SsmTargetAccount {
38
36
  IMPACTED_ACCOUNT = "IMPACTED_ACCOUNT",
@@ -53,10 +51,6 @@ export interface SsmAutomation {
53
51
 
54
52
  dynamicParameters?: Record<string, DynamicSsmParameterValue>;
55
53
  }
56
- export declare namespace SsmAutomation {
57
-
58
- const filterSensitiveLog: (obj: SsmAutomation) => any;
59
- }
60
54
 
61
55
  export declare type Action = Action.SsmAutomationMember | Action.$UnknownMember;
62
56
  export declare namespace Action {
@@ -77,8 +71,6 @@ export declare namespace Action {
77
71
  _: (name: string, value: any) => T;
78
72
  }
79
73
  const visit: <T>(value: Action, visitor: Visitor<T>) => T;
80
-
81
- const filterSensitiveLog: (obj: Action) => any;
82
74
  }
83
75
 
84
76
  export interface AddRegionAction {
@@ -87,10 +79,6 @@ export interface AddRegionAction {
87
79
 
88
80
  sseKmsKeyId?: string;
89
81
  }
90
- export declare namespace AddRegionAction {
91
-
92
- const filterSensitiveLog: (obj: AddRegionAction) => any;
93
- }
94
82
 
95
83
  export declare type AttributeValueList = AttributeValueList.IntegerValuesMember | AttributeValueList.StringValuesMember | AttributeValueList.$UnknownMember;
96
84
  export declare namespace AttributeValueList {
@@ -120,8 +108,6 @@ export declare namespace AttributeValueList {
120
108
  _: (name: string, value: any) => T;
121
109
  }
122
110
  const visit: <T>(value: AttributeValueList, visitor: Visitor<T>) => T;
123
-
124
- const filterSensitiveLog: (obj: AttributeValueList) => any;
125
111
  }
126
112
 
127
113
  export declare type AutomationExecution = AutomationExecution.SsmExecutionArnMember | AutomationExecution.$UnknownMember;
@@ -143,16 +129,10 @@ export declare namespace AutomationExecution {
143
129
  _: (name: string, value: any) => T;
144
130
  }
145
131
  const visit: <T>(value: AutomationExecution, visitor: Visitor<T>) => T;
146
-
147
- const filterSensitiveLog: (obj: AutomationExecution) => any;
148
132
  }
149
133
 
150
134
  export interface EmptyChatChannel {
151
135
  }
152
- export declare namespace EmptyChatChannel {
153
-
154
- const filterSensitiveLog: (obj: EmptyChatChannel) => any;
155
- }
156
136
 
157
137
  export declare type ChatChannel = ChatChannel.ChatbotSnsMember | ChatChannel.EmptyMember | ChatChannel.$UnknownMember;
158
138
  export declare namespace ChatChannel {
@@ -182,8 +162,6 @@ export declare namespace ChatChannel {
182
162
  _: (name: string, value: any) => T;
183
163
  }
184
164
  const visit: <T>(value: ChatChannel, visitor: Visitor<T>) => T;
185
-
186
- const filterSensitiveLog: (obj: ChatChannel) => any;
187
165
  }
188
166
 
189
167
  export declare type Condition = Condition.AfterMember | Condition.BeforeMember | Condition.EqualsMember | Condition.$UnknownMember;
@@ -225,8 +203,6 @@ export declare namespace Condition {
225
203
  _: (name: string, value: any) => T;
226
204
  }
227
205
  const visit: <T>(value: Condition, visitor: Visitor<T>) => T;
228
-
229
- const filterSensitiveLog: (obj: Condition) => any;
230
206
  }
231
207
  export declare enum ResourceType {
232
208
  INCIDENT_RECORD = "INCIDENT_RECORD",
@@ -253,28 +229,16 @@ export interface RegionMapInputValue {
253
229
 
254
230
  sseKmsKeyId?: string;
255
231
  }
256
- export declare namespace RegionMapInputValue {
257
-
258
- const filterSensitiveLog: (obj: RegionMapInputValue) => any;
259
- }
260
232
  export interface CreateReplicationSetInput {
261
233
 
262
234
  regions: Record<string, RegionMapInputValue> | undefined;
263
235
 
264
236
  clientToken?: string;
265
237
  }
266
- export declare namespace CreateReplicationSetInput {
267
-
268
- const filterSensitiveLog: (obj: CreateReplicationSetInput) => any;
269
- }
270
238
  export interface CreateReplicationSetOutput {
271
239
 
272
240
  arn: string | undefined;
273
241
  }
274
- export declare namespace CreateReplicationSetOutput {
275
-
276
- const filterSensitiveLog: (obj: CreateReplicationSetOutput) => any;
277
- }
278
242
 
279
243
  export declare class InternalServerException extends __BaseException {
280
244
  readonly name: "InternalServerException";
@@ -338,8 +302,6 @@ export declare namespace NotificationTargetItem {
338
302
  _: (name: string, value: any) => T;
339
303
  }
340
304
  const visit: <T>(value: NotificationTargetItem, visitor: Visitor<T>) => T;
341
-
342
- const filterSensitiveLog: (obj: NotificationTargetItem) => any;
343
305
  }
344
306
 
345
307
  export interface IncidentTemplate {
@@ -356,10 +318,6 @@ export interface IncidentTemplate {
356
318
 
357
319
  incidentTags?: Record<string, string>;
358
320
  }
359
- export declare namespace IncidentTemplate {
360
-
361
- const filterSensitiveLog: (obj: IncidentTemplate) => any;
362
- }
363
321
  export interface CreateResponsePlanInput {
364
322
 
365
323
  clientToken?: string;
@@ -378,18 +336,10 @@ export interface CreateResponsePlanInput {
378
336
 
379
337
  tags?: Record<string, string>;
380
338
  }
381
- export declare namespace CreateResponsePlanInput {
382
-
383
- const filterSensitiveLog: (obj: CreateResponsePlanInput) => any;
384
- }
385
339
  export interface CreateResponsePlanOutput {
386
340
 
387
341
  arn: string | undefined;
388
342
  }
389
- export declare namespace CreateResponsePlanOutput {
390
-
391
- const filterSensitiveLog: (obj: CreateResponsePlanOutput) => any;
392
- }
393
343
 
394
344
  export declare class ResourceNotFoundException extends __BaseException {
395
345
  readonly name: "ResourceNotFoundException";
@@ -413,103 +363,51 @@ export interface CreateTimelineEventInput {
413
363
 
414
364
  eventData: string | undefined;
415
365
  }
416
- export declare namespace CreateTimelineEventInput {
417
-
418
- const filterSensitiveLog: (obj: CreateTimelineEventInput) => any;
419
- }
420
366
  export interface CreateTimelineEventOutput {
421
367
 
422
368
  incidentRecordArn: string | undefined;
423
369
 
424
370
  eventId: string | undefined;
425
371
  }
426
- export declare namespace CreateTimelineEventOutput {
427
-
428
- const filterSensitiveLog: (obj: CreateTimelineEventOutput) => any;
429
- }
430
372
  export interface DeleteIncidentRecordInput {
431
373
 
432
374
  arn: string | undefined;
433
375
  }
434
- export declare namespace DeleteIncidentRecordInput {
435
-
436
- const filterSensitiveLog: (obj: DeleteIncidentRecordInput) => any;
437
- }
438
376
  export interface DeleteIncidentRecordOutput {
439
377
  }
440
- export declare namespace DeleteIncidentRecordOutput {
441
-
442
- const filterSensitiveLog: (obj: DeleteIncidentRecordOutput) => any;
443
- }
444
378
 
445
379
  export interface DeleteRegionAction {
446
380
 
447
381
  regionName: string | undefined;
448
382
  }
449
- export declare namespace DeleteRegionAction {
450
-
451
- const filterSensitiveLog: (obj: DeleteRegionAction) => any;
452
- }
453
383
  export interface DeleteReplicationSetInput {
454
384
 
455
385
  arn: string | undefined;
456
386
  }
457
- export declare namespace DeleteReplicationSetInput {
458
-
459
- const filterSensitiveLog: (obj: DeleteReplicationSetInput) => any;
460
- }
461
387
  export interface DeleteReplicationSetOutput {
462
388
  }
463
- export declare namespace DeleteReplicationSetOutput {
464
-
465
- const filterSensitiveLog: (obj: DeleteReplicationSetOutput) => any;
466
- }
467
389
  export interface DeleteResourcePolicyInput {
468
390
 
469
391
  resourceArn: string | undefined;
470
392
 
471
393
  policyId: string | undefined;
472
394
  }
473
- export declare namespace DeleteResourcePolicyInput {
474
-
475
- const filterSensitiveLog: (obj: DeleteResourcePolicyInput) => any;
476
- }
477
395
  export interface DeleteResourcePolicyOutput {
478
396
  }
479
- export declare namespace DeleteResourcePolicyOutput {
480
-
481
- const filterSensitiveLog: (obj: DeleteResourcePolicyOutput) => any;
482
- }
483
397
  export interface DeleteResponsePlanInput {
484
398
 
485
399
  arn: string | undefined;
486
400
  }
487
- export declare namespace DeleteResponsePlanInput {
488
-
489
- const filterSensitiveLog: (obj: DeleteResponsePlanInput) => any;
490
- }
491
401
  export interface DeleteResponsePlanOutput {
492
402
  }
493
- export declare namespace DeleteResponsePlanOutput {
494
-
495
- const filterSensitiveLog: (obj: DeleteResponsePlanOutput) => any;
496
- }
497
403
  export interface DeleteTimelineEventInput {
498
404
 
499
405
  incidentRecordArn: string | undefined;
500
406
 
501
407
  eventId: string | undefined;
502
408
  }
503
- export declare namespace DeleteTimelineEventInput {
504
-
505
- const filterSensitiveLog: (obj: DeleteTimelineEventInput) => any;
506
- }
507
409
  export interface DeleteTimelineEventOutput {
508
410
  }
509
- export declare namespace DeleteTimelineEventOutput {
510
-
511
- const filterSensitiveLog: (obj: DeleteTimelineEventOutput) => any;
512
- }
513
411
 
514
412
  export interface EventSummary {
515
413
 
@@ -523,10 +421,6 @@ export interface EventSummary {
523
421
 
524
422
  eventType: string | undefined;
525
423
  }
526
- export declare namespace EventSummary {
527
-
528
- const filterSensitiveLog: (obj: EventSummary) => any;
529
- }
530
424
 
531
425
  export interface Filter {
532
426
 
@@ -534,18 +428,10 @@ export interface Filter {
534
428
 
535
429
  condition: Condition | undefined;
536
430
  }
537
- export declare namespace Filter {
538
-
539
- const filterSensitiveLog: (obj: Filter) => any;
540
- }
541
431
  export interface GetIncidentRecordInput {
542
432
 
543
433
  arn: string | undefined;
544
434
  }
545
- export declare namespace GetIncidentRecordInput {
546
-
547
- const filterSensitiveLog: (obj: GetIncidentRecordInput) => any;
548
- }
549
435
 
550
436
  export interface IncidentRecordSource {
551
437
 
@@ -557,10 +443,6 @@ export interface IncidentRecordSource {
557
443
 
558
444
  source: string | undefined;
559
445
  }
560
- export declare namespace IncidentRecordSource {
561
-
562
- const filterSensitiveLog: (obj: IncidentRecordSource) => any;
563
- }
564
446
  export declare enum IncidentRecordStatus {
565
447
  OPEN = "OPEN",
566
448
  RESOLVED = "RESOLVED"
@@ -596,26 +478,14 @@ export interface IncidentRecord {
596
478
 
597
479
  notificationTargets?: NotificationTargetItem[];
598
480
  }
599
- export declare namespace IncidentRecord {
600
-
601
- const filterSensitiveLog: (obj: IncidentRecord) => any;
602
- }
603
481
  export interface GetIncidentRecordOutput {
604
482
 
605
483
  incidentRecord: IncidentRecord | undefined;
606
484
  }
607
- export declare namespace GetIncidentRecordOutput {
608
-
609
- const filterSensitiveLog: (obj: GetIncidentRecordOutput) => any;
610
- }
611
485
  export interface GetReplicationSetInput {
612
486
 
613
487
  arn: string | undefined;
614
488
  }
615
- export declare namespace GetReplicationSetInput {
616
-
617
- const filterSensitiveLog: (obj: GetReplicationSetInput) => any;
618
- }
619
489
  export declare enum RegionStatus {
620
490
 
621
491
  ACTIVE = "ACTIVE",
@@ -637,10 +507,6 @@ export interface RegionInfo {
637
507
 
638
508
  statusUpdateDateTime: Date | undefined;
639
509
  }
640
- export declare namespace RegionInfo {
641
-
642
- const filterSensitiveLog: (obj: RegionInfo) => any;
643
- }
644
510
  export declare enum ReplicationSetStatus {
645
511
 
646
512
  ACTIVE = "ACTIVE",
@@ -672,18 +538,10 @@ export interface ReplicationSet {
672
538
 
673
539
  lastModifiedBy: string | undefined;
674
540
  }
675
- export declare namespace ReplicationSet {
676
-
677
- const filterSensitiveLog: (obj: ReplicationSet) => any;
678
- }
679
541
  export interface GetReplicationSetOutput {
680
542
 
681
543
  replicationSet: ReplicationSet | undefined;
682
544
  }
683
- export declare namespace GetReplicationSetOutput {
684
-
685
- const filterSensitiveLog: (obj: GetReplicationSetOutput) => any;
686
- }
687
545
  export interface GetResourcePoliciesInput {
688
546
 
689
547
  resourceArn: string | undefined;
@@ -692,10 +550,6 @@ export interface GetResourcePoliciesInput {
692
550
 
693
551
  nextToken?: string;
694
552
  }
695
- export declare namespace GetResourcePoliciesInput {
696
-
697
- const filterSensitiveLog: (obj: GetResourcePoliciesInput) => any;
698
- }
699
553
 
700
554
  export interface ResourcePolicy {
701
555
 
@@ -705,28 +559,16 @@ export interface ResourcePolicy {
705
559
 
706
560
  ramResourceShareRegion: string | undefined;
707
561
  }
708
- export declare namespace ResourcePolicy {
709
-
710
- const filterSensitiveLog: (obj: ResourcePolicy) => any;
711
- }
712
562
  export interface GetResourcePoliciesOutput {
713
563
 
714
564
  resourcePolicies: ResourcePolicy[] | undefined;
715
565
 
716
566
  nextToken?: string;
717
567
  }
718
- export declare namespace GetResourcePoliciesOutput {
719
-
720
- const filterSensitiveLog: (obj: GetResourcePoliciesOutput) => any;
721
- }
722
568
  export interface GetResponsePlanInput {
723
569
 
724
570
  arn: string | undefined;
725
571
  }
726
- export declare namespace GetResponsePlanInput {
727
-
728
- const filterSensitiveLog: (obj: GetResponsePlanInput) => any;
729
- }
730
572
  export interface GetResponsePlanOutput {
731
573
 
732
574
  arn: string | undefined;
@@ -743,20 +585,12 @@ export interface GetResponsePlanOutput {
743
585
 
744
586
  actions?: Action[];
745
587
  }
746
- export declare namespace GetResponsePlanOutput {
747
-
748
- const filterSensitiveLog: (obj: GetResponsePlanOutput) => any;
749
- }
750
588
  export interface GetTimelineEventInput {
751
589
 
752
590
  incidentRecordArn: string | undefined;
753
591
 
754
592
  eventId: string | undefined;
755
593
  }
756
- export declare namespace GetTimelineEventInput {
757
-
758
- const filterSensitiveLog: (obj: GetTimelineEventInput) => any;
759
- }
760
594
 
761
595
  export interface TimelineEvent {
762
596
 
@@ -772,18 +606,10 @@ export interface TimelineEvent {
772
606
 
773
607
  eventData: string | undefined;
774
608
  }
775
- export declare namespace TimelineEvent {
776
-
777
- const filterSensitiveLog: (obj: TimelineEvent) => any;
778
- }
779
609
  export interface GetTimelineEventOutput {
780
610
 
781
611
  event: TimelineEvent | undefined;
782
612
  }
783
- export declare namespace GetTimelineEventOutput {
784
-
785
- const filterSensitiveLog: (obj: GetTimelineEventOutput) => any;
786
- }
787
613
 
788
614
  export interface IncidentRecordSummary {
789
615
 
@@ -801,10 +627,6 @@ export interface IncidentRecordSummary {
801
627
 
802
628
  incidentRecordSource: IncidentRecordSource | undefined;
803
629
  }
804
- export declare namespace IncidentRecordSummary {
805
-
806
- const filterSensitiveLog: (obj: IncidentRecordSummary) => any;
807
- }
808
630
  export declare enum ItemType {
809
631
  ANALYSIS = "ANALYSIS",
810
632
  ATTACHMENT = "ATTACHMENT",
@@ -855,8 +677,6 @@ export declare namespace ItemValue {
855
677
  _: (name: string, value: any) => T;
856
678
  }
857
679
  const visit: <T>(value: ItemValue, visitor: Visitor<T>) => T;
858
-
859
- const filterSensitiveLog: (obj: ItemValue) => any;
860
680
  }
861
681
 
862
682
  export interface ItemIdentifier {
@@ -865,10 +685,6 @@ export interface ItemIdentifier {
865
685
 
866
686
  type: ItemType | string | undefined;
867
687
  }
868
- export declare namespace ItemIdentifier {
869
-
870
- const filterSensitiveLog: (obj: ItemIdentifier) => any;
871
- }
872
688
  export interface ListIncidentRecordsInput {
873
689
 
874
690
  filters?: Filter[];
@@ -877,20 +693,12 @@ export interface ListIncidentRecordsInput {
877
693
 
878
694
  nextToken?: string;
879
695
  }
880
- export declare namespace ListIncidentRecordsInput {
881
-
882
- const filterSensitiveLog: (obj: ListIncidentRecordsInput) => any;
883
- }
884
696
  export interface ListIncidentRecordsOutput {
885
697
 
886
698
  incidentRecordSummaries: IncidentRecordSummary[] | undefined;
887
699
 
888
700
  nextToken?: string;
889
701
  }
890
- export declare namespace ListIncidentRecordsOutput {
891
-
892
- const filterSensitiveLog: (obj: ListIncidentRecordsOutput) => any;
893
- }
894
702
  export interface ListRelatedItemsInput {
895
703
 
896
704
  incidentRecordArn: string | undefined;
@@ -899,10 +707,6 @@ export interface ListRelatedItemsInput {
899
707
 
900
708
  nextToken?: string;
901
709
  }
902
- export declare namespace ListRelatedItemsInput {
903
-
904
- const filterSensitiveLog: (obj: ListRelatedItemsInput) => any;
905
- }
906
710
 
907
711
  export interface RelatedItem {
908
712
 
@@ -910,50 +714,30 @@ export interface RelatedItem {
910
714
 
911
715
  title?: string;
912
716
  }
913
- export declare namespace RelatedItem {
914
-
915
- const filterSensitiveLog: (obj: RelatedItem) => any;
916
- }
917
717
  export interface ListRelatedItemsOutput {
918
718
 
919
719
  relatedItems: RelatedItem[] | undefined;
920
720
 
921
721
  nextToken?: string;
922
722
  }
923
- export declare namespace ListRelatedItemsOutput {
924
-
925
- const filterSensitiveLog: (obj: ListRelatedItemsOutput) => any;
926
- }
927
723
  export interface ListReplicationSetsInput {
928
724
 
929
725
  maxResults?: number;
930
726
 
931
727
  nextToken?: string;
932
728
  }
933
- export declare namespace ListReplicationSetsInput {
934
-
935
- const filterSensitiveLog: (obj: ListReplicationSetsInput) => any;
936
- }
937
729
  export interface ListReplicationSetsOutput {
938
730
 
939
731
  replicationSetArns: string[] | undefined;
940
732
 
941
733
  nextToken?: string;
942
734
  }
943
- export declare namespace ListReplicationSetsOutput {
944
-
945
- const filterSensitiveLog: (obj: ListReplicationSetsOutput) => any;
946
- }
947
735
  export interface ListResponsePlansInput {
948
736
 
949
737
  maxResults?: number;
950
738
 
951
739
  nextToken?: string;
952
740
  }
953
- export declare namespace ListResponsePlansInput {
954
-
955
- const filterSensitiveLog: (obj: ListResponsePlansInput) => any;
956
- }
957
741
 
958
742
  export interface ResponsePlanSummary {
959
743
 
@@ -963,36 +747,20 @@ export interface ResponsePlanSummary {
963
747
 
964
748
  displayName?: string;
965
749
  }
966
- export declare namespace ResponsePlanSummary {
967
-
968
- const filterSensitiveLog: (obj: ResponsePlanSummary) => any;
969
- }
970
750
  export interface ListResponsePlansOutput {
971
751
 
972
752
  responsePlanSummaries: ResponsePlanSummary[] | undefined;
973
753
 
974
754
  nextToken?: string;
975
755
  }
976
- export declare namespace ListResponsePlansOutput {
977
-
978
- const filterSensitiveLog: (obj: ListResponsePlansOutput) => any;
979
- }
980
756
  export interface ListTagsForResourceRequest {
981
757
 
982
758
  resourceArn: string | undefined;
983
759
  }
984
- export declare namespace ListTagsForResourceRequest {
985
-
986
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
987
- }
988
760
  export interface ListTagsForResourceResponse {
989
761
 
990
762
  tags: Record<string, string> | undefined;
991
763
  }
992
- export declare namespace ListTagsForResourceResponse {
993
-
994
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
995
- }
996
764
  export declare enum TimelineEventSort {
997
765
  EVENT_TIME = "EVENT_TIME"
998
766
  }
@@ -1014,38 +782,22 @@ export interface ListTimelineEventsInput {
1014
782
 
1015
783
  nextToken?: string;
1016
784
  }
1017
- export declare namespace ListTimelineEventsInput {
1018
-
1019
- const filterSensitiveLog: (obj: ListTimelineEventsInput) => any;
1020
- }
1021
785
  export interface ListTimelineEventsOutput {
1022
786
 
1023
787
  eventSummaries: EventSummary[] | undefined;
1024
788
 
1025
789
  nextToken?: string;
1026
790
  }
1027
- export declare namespace ListTimelineEventsOutput {
1028
-
1029
- const filterSensitiveLog: (obj: ListTimelineEventsOutput) => any;
1030
- }
1031
791
  export interface PutResourcePolicyInput {
1032
792
 
1033
793
  resourceArn: string | undefined;
1034
794
 
1035
795
  policy: string | undefined;
1036
796
  }
1037
- export declare namespace PutResourcePolicyInput {
1038
-
1039
- const filterSensitiveLog: (obj: PutResourcePolicyInput) => any;
1040
- }
1041
797
  export interface PutResourcePolicyOutput {
1042
798
 
1043
799
  policyId: string | undefined;
1044
800
  }
1045
- export declare namespace PutResourcePolicyOutput {
1046
-
1047
- const filterSensitiveLog: (obj: PutResourcePolicyOutput) => any;
1048
- }
1049
801
 
1050
802
  export declare type RelatedItemsUpdate = RelatedItemsUpdate.ItemToAddMember | RelatedItemsUpdate.ItemToRemoveMember | RelatedItemsUpdate.$UnknownMember;
1051
803
  export declare namespace RelatedItemsUpdate {
@@ -1075,8 +827,6 @@ export declare namespace RelatedItemsUpdate {
1075
827
  _: (name: string, value: any) => T;
1076
828
  }
1077
829
  const visit: <T>(value: RelatedItemsUpdate, visitor: Visitor<T>) => T;
1078
-
1079
- const filterSensitiveLog: (obj: RelatedItemsUpdate) => any;
1080
830
  }
1081
831
 
1082
832
  export interface TriggerDetails {
@@ -1089,10 +839,6 @@ export interface TriggerDetails {
1089
839
 
1090
840
  rawData?: string;
1091
841
  }
1092
- export declare namespace TriggerDetails {
1093
-
1094
- const filterSensitiveLog: (obj: TriggerDetails) => any;
1095
- }
1096
842
  export interface StartIncidentInput {
1097
843
 
1098
844
  clientToken?: string;
@@ -1107,50 +853,26 @@ export interface StartIncidentInput {
1107
853
 
1108
854
  relatedItems?: RelatedItem[];
1109
855
  }
1110
- export declare namespace StartIncidentInput {
1111
-
1112
- const filterSensitiveLog: (obj: StartIncidentInput) => any;
1113
- }
1114
856
  export interface StartIncidentOutput {
1115
857
 
1116
858
  incidentRecordArn: string | undefined;
1117
859
  }
1118
- export declare namespace StartIncidentOutput {
1119
-
1120
- const filterSensitiveLog: (obj: StartIncidentOutput) => any;
1121
- }
1122
860
  export interface TagResourceRequest {
1123
861
 
1124
862
  resourceArn: string | undefined;
1125
863
 
1126
864
  tags: Record<string, string> | undefined;
1127
865
  }
1128
- export declare namespace TagResourceRequest {
1129
-
1130
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1131
- }
1132
866
  export interface TagResourceResponse {
1133
867
  }
1134
- export declare namespace TagResourceResponse {
1135
-
1136
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1137
- }
1138
868
  export interface UntagResourceRequest {
1139
869
 
1140
870
  resourceArn: string | undefined;
1141
871
 
1142
872
  tagKeys: string[] | undefined;
1143
873
  }
1144
- export declare namespace UntagResourceRequest {
1145
-
1146
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1147
- }
1148
874
  export interface UntagResourceResponse {
1149
875
  }
1150
- export declare namespace UntagResourceResponse {
1151
-
1152
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1153
- }
1154
876
  export interface UpdateDeletionProtectionInput {
1155
877
 
1156
878
  arn: string | undefined;
@@ -1159,16 +881,8 @@ export interface UpdateDeletionProtectionInput {
1159
881
 
1160
882
  clientToken?: string;
1161
883
  }
1162
- export declare namespace UpdateDeletionProtectionInput {
1163
-
1164
- const filterSensitiveLog: (obj: UpdateDeletionProtectionInput) => any;
1165
- }
1166
884
  export interface UpdateDeletionProtectionOutput {
1167
885
  }
1168
- export declare namespace UpdateDeletionProtectionOutput {
1169
-
1170
- const filterSensitiveLog: (obj: UpdateDeletionProtectionOutput) => any;
1171
- }
1172
886
  export interface UpdateIncidentRecordInput {
1173
887
 
1174
888
  clientToken?: string;
@@ -1187,16 +901,8 @@ export interface UpdateIncidentRecordInput {
1187
901
 
1188
902
  notificationTargets?: NotificationTargetItem[];
1189
903
  }
1190
- export declare namespace UpdateIncidentRecordInput {
1191
-
1192
- const filterSensitiveLog: (obj: UpdateIncidentRecordInput) => any;
1193
- }
1194
904
  export interface UpdateIncidentRecordOutput {
1195
905
  }
1196
- export declare namespace UpdateIncidentRecordOutput {
1197
-
1198
- const filterSensitiveLog: (obj: UpdateIncidentRecordOutput) => any;
1199
- }
1200
906
  export interface UpdateRelatedItemsInput {
1201
907
 
1202
908
  clientToken?: string;
@@ -1205,16 +911,8 @@ export interface UpdateRelatedItemsInput {
1205
911
 
1206
912
  relatedItemsUpdate: RelatedItemsUpdate | undefined;
1207
913
  }
1208
- export declare namespace UpdateRelatedItemsInput {
1209
-
1210
- const filterSensitiveLog: (obj: UpdateRelatedItemsInput) => any;
1211
- }
1212
914
  export interface UpdateRelatedItemsOutput {
1213
915
  }
1214
- export declare namespace UpdateRelatedItemsOutput {
1215
-
1216
- const filterSensitiveLog: (obj: UpdateRelatedItemsOutput) => any;
1217
- }
1218
916
 
1219
917
  export declare type UpdateReplicationSetAction = UpdateReplicationSetAction.AddRegionActionMember | UpdateReplicationSetAction.DeleteRegionActionMember | UpdateReplicationSetAction.$UnknownMember;
1220
918
  export declare namespace UpdateReplicationSetAction {
@@ -1244,8 +942,6 @@ export declare namespace UpdateReplicationSetAction {
1244
942
  _: (name: string, value: any) => T;
1245
943
  }
1246
944
  const visit: <T>(value: UpdateReplicationSetAction, visitor: Visitor<T>) => T;
1247
-
1248
- const filterSensitiveLog: (obj: UpdateReplicationSetAction) => any;
1249
945
  }
1250
946
  export interface UpdateReplicationSetInput {
1251
947
 
@@ -1255,16 +951,8 @@ export interface UpdateReplicationSetInput {
1255
951
 
1256
952
  clientToken?: string;
1257
953
  }
1258
- export declare namespace UpdateReplicationSetInput {
1259
-
1260
- const filterSensitiveLog: (obj: UpdateReplicationSetInput) => any;
1261
- }
1262
954
  export interface UpdateReplicationSetOutput {
1263
955
  }
1264
- export declare namespace UpdateReplicationSetOutput {
1265
-
1266
- const filterSensitiveLog: (obj: UpdateReplicationSetOutput) => any;
1267
- }
1268
956
  export interface UpdateResponsePlanInput {
1269
957
 
1270
958
  clientToken?: string;
@@ -1291,16 +979,8 @@ export interface UpdateResponsePlanInput {
1291
979
 
1292
980
  incidentTemplateTags?: Record<string, string>;
1293
981
  }
1294
- export declare namespace UpdateResponsePlanInput {
1295
-
1296
- const filterSensitiveLog: (obj: UpdateResponsePlanInput) => any;
1297
- }
1298
982
  export interface UpdateResponsePlanOutput {
1299
983
  }
1300
- export declare namespace UpdateResponsePlanOutput {
1301
-
1302
- const filterSensitiveLog: (obj: UpdateResponsePlanOutput) => any;
1303
- }
1304
984
  export interface UpdateTimelineEventInput {
1305
985
 
1306
986
  clientToken?: string;
@@ -1315,13 +995,179 @@ export interface UpdateTimelineEventInput {
1315
995
 
1316
996
  eventData?: string;
1317
997
  }
1318
- export declare namespace UpdateTimelineEventInput {
1319
-
1320
- const filterSensitiveLog: (obj: UpdateTimelineEventInput) => any;
1321
- }
1322
998
  export interface UpdateTimelineEventOutput {
1323
999
  }
1324
- export declare namespace UpdateTimelineEventOutput {
1325
-
1326
- const filterSensitiveLog: (obj: UpdateTimelineEventOutput) => any;
1327
- }
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;