@aws-sdk/client-arc-region-switch 3.955.0 → 3.957.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.
@@ -1,4 +1,4 @@
1
- import { AlarmCondition, AlarmType, Approval, Ec2AsgCapacityMonitoringApproach, EcsCapacityMonitoringApproach, EksCapacityMonitoringApproach, EvaluationStatus, ExecutionAction, ExecutionBlockType, ExecutionEventType, ExecutionMode, ExecutionState, GlobalAuroraDefaultBehavior, GlobalAuroraUngracefulBehavior, LambdaUngracefulBehavior, RecoveryApproach, RegionToRunIn, ResourceWarningStatus, Route53HealthCheckStatus, RoutingControlStateChange, StepStatus, UpdatePlanExecutionAction, UpdatePlanExecutionStepAction, WorkflowTargetAction } from "./enums";
1
+ import { AlarmCondition, AlarmType, Approval, DocumentDbDefaultBehavior, DocumentDbUngracefulBehavior, Ec2AsgCapacityMonitoringApproach, EcsCapacityMonitoringApproach, EksCapacityMonitoringApproach, EvaluationStatus, ExecutionAction, ExecutionBlockType, ExecutionEventType, ExecutionMode, ExecutionState, FailedReportErrorCode, GlobalAuroraDefaultBehavior, GlobalAuroraUngracefulBehavior, LambdaUngracefulBehavior, RecoveryApproach, RegionToRunIn, ResourceWarningStatus, Route53HealthCheckStatus, RoutingControlStateChange, StepStatus, UpdatePlanExecutionAction, UpdatePlanExecutionStepAction, WorkflowTargetAction } from "./enums";
2
2
  /**
3
3
  * <p>A summarized representation of a plan execution. This structure contains key information about an execution without all the detailed step data.</p>
4
4
  * @public
@@ -333,6 +333,94 @@ export interface GetPlanExecutionRequest {
333
333
  */
334
334
  nextToken?: string | undefined;
335
335
  }
336
+ /**
337
+ * <p>Information about a report generation that failed.</p>
338
+ * @public
339
+ */
340
+ export interface FailedReportOutput {
341
+ /**
342
+ * <p>The error code for the failed report generation.</p>
343
+ * @public
344
+ */
345
+ errorCode?: FailedReportErrorCode | undefined;
346
+ /**
347
+ * <p>The error message for the failed report generation.</p>
348
+ * @public
349
+ */
350
+ errorMessage?: string | undefined;
351
+ }
352
+ /**
353
+ * <p>Information about a report delivered to Amazon S3.</p>
354
+ * @public
355
+ */
356
+ export interface S3ReportOutput {
357
+ /**
358
+ * <p>The S3 object key where the generated report is stored.</p>
359
+ * @public
360
+ */
361
+ s3ObjectKey?: string | undefined;
362
+ }
363
+ /**
364
+ * <p>The output location or cause of a failure in report generation.</p>
365
+ * @public
366
+ */
367
+ export type ReportOutput = ReportOutput.FailedReportOutputMember | ReportOutput.S3ReportOutputMember | ReportOutput.$UnknownMember;
368
+ /**
369
+ * @public
370
+ */
371
+ export declare namespace ReportOutput {
372
+ /**
373
+ * <p>Information about a report delivered to Amazon S3.</p>
374
+ * @public
375
+ */
376
+ interface S3ReportOutputMember {
377
+ s3ReportOutput: S3ReportOutput;
378
+ failedReportOutput?: never;
379
+ $unknown?: never;
380
+ }
381
+ /**
382
+ * <p>The details about a failed report generation.</p>
383
+ * @public
384
+ */
385
+ interface FailedReportOutputMember {
386
+ s3ReportOutput?: never;
387
+ failedReportOutput: FailedReportOutput;
388
+ $unknown?: never;
389
+ }
390
+ /**
391
+ * @public
392
+ */
393
+ interface $UnknownMember {
394
+ s3ReportOutput?: never;
395
+ failedReportOutput?: never;
396
+ $unknown: [string, any];
397
+ }
398
+ /**
399
+ * @deprecated unused in schema-serde mode.
400
+ *
401
+ */
402
+ interface Visitor<T> {
403
+ s3ReportOutput: (value: S3ReportOutput) => T;
404
+ failedReportOutput: (value: FailedReportOutput) => T;
405
+ _: (name: string, value: any) => T;
406
+ }
407
+ }
408
+ /**
409
+ * <p>Information about a generated execution report.</p>
410
+ * @public
411
+ */
412
+ export interface GeneratedReport {
413
+ /**
414
+ * <p>The timestamp when the report was generated.</p>
415
+ * @public
416
+ */
417
+ reportGenerationTime?: Date | undefined;
418
+ /**
419
+ * <p>The output location or cause of a failure in report generation.</p>
420
+ * @public
421
+ */
422
+ reportOutput?: ReportOutput | undefined;
423
+ }
336
424
  /**
337
425
  * <p>An Amazon CloudWatch alarm associated with a Region switch plan. These alarms can be used to trigger automatic execution of the plan.</p>
338
426
  * @public
@@ -359,6 +447,66 @@ export interface AssociatedAlarm {
359
447
  */
360
448
  alarmType: AlarmType | undefined;
361
449
  }
450
+ /**
451
+ * <p>Configuration for delivering generated reports to an Amazon S3 bucket.</p>
452
+ * @public
453
+ */
454
+ export interface S3ReportOutputConfiguration {
455
+ /**
456
+ * <p>The S3 bucket name and optional prefix where reports are stored. Format: bucket-name or bucket-name/prefix.</p>
457
+ * @public
458
+ */
459
+ bucketPath?: string | undefined;
460
+ /**
461
+ * <p>The Amazon Web Services account ID that owns the S3 bucket. Required to ensure the bucket is still owned by the same expected owner at generation time.</p>
462
+ * @public
463
+ */
464
+ bucketOwner?: string | undefined;
465
+ }
466
+ /**
467
+ * <p>Configuration for report output destinations used in a Region switch plan.</p>
468
+ * @public
469
+ */
470
+ export type ReportOutputConfiguration = ReportOutputConfiguration.S3ConfigurationMember | ReportOutputConfiguration.$UnknownMember;
471
+ /**
472
+ * @public
473
+ */
474
+ export declare namespace ReportOutputConfiguration {
475
+ /**
476
+ * <p>Configuration for delivering reports to an Amazon S3 bucket.</p>
477
+ * @public
478
+ */
479
+ interface S3ConfigurationMember {
480
+ s3Configuration: S3ReportOutputConfiguration;
481
+ $unknown?: never;
482
+ }
483
+ /**
484
+ * @public
485
+ */
486
+ interface $UnknownMember {
487
+ s3Configuration?: never;
488
+ $unknown: [string, any];
489
+ }
490
+ /**
491
+ * @deprecated unused in schema-serde mode.
492
+ *
493
+ */
494
+ interface Visitor<T> {
495
+ s3Configuration: (value: S3ReportOutputConfiguration) => T;
496
+ _: (name: string, value: any) => T;
497
+ }
498
+ }
499
+ /**
500
+ * <p>Configuration for automatic report generation for plan executions. When configured, Region switch automatically generates a report after each plan execution that includes execution events, plan configuration, and CloudWatch alarm states.</p>
501
+ * @public
502
+ */
503
+ export interface ReportConfiguration {
504
+ /**
505
+ * <p>The output configuration for the report.</p>
506
+ * @public
507
+ */
508
+ reportOutput?: ReportOutputConfiguration[] | undefined;
509
+ }
362
510
  /**
363
511
  * <p>Defines a condition that must be met for a trigger to fire.</p>
364
512
  * @public
@@ -511,6 +659,58 @@ export interface CustomActionLambdaConfiguration {
511
659
  */
512
660
  ungraceful?: LambdaUngraceful | undefined;
513
661
  }
662
+ /**
663
+ * <p>Configuration for handling failures when performing operations on DocumentDB global clusters.</p>
664
+ * @public
665
+ */
666
+ export interface DocumentDbUngraceful {
667
+ /**
668
+ * <p>The settings for ungraceful execution.</p>
669
+ * @public
670
+ */
671
+ ungraceful?: DocumentDbUngracefulBehavior | undefined;
672
+ }
673
+ /**
674
+ * <p>Configuration for Amazon DocumentDB global clusters used in a Region switch plan.</p>
675
+ * @public
676
+ */
677
+ export interface DocumentDbConfiguration {
678
+ /**
679
+ * <p>The timeout value specified for the configuration.</p>
680
+ * @public
681
+ */
682
+ timeoutMinutes?: number | undefined;
683
+ /**
684
+ * <p>The cross account role for the configuration.</p>
685
+ * @public
686
+ */
687
+ crossAccountRole?: string | undefined;
688
+ /**
689
+ * <p>The external ID (secret key) for the configuration.</p>
690
+ * @public
691
+ */
692
+ externalId?: string | undefined;
693
+ /**
694
+ * <p>The behavior for a global cluster, that is, only allow switchover or also allow failover.</p>
695
+ * @public
696
+ */
697
+ behavior: DocumentDbDefaultBehavior | undefined;
698
+ /**
699
+ * <p>The settings for ungraceful execution.</p>
700
+ * @public
701
+ */
702
+ ungraceful?: DocumentDbUngraceful | undefined;
703
+ /**
704
+ * <p>The global cluster identifier for a DocumentDB global cluster.</p>
705
+ * @public
706
+ */
707
+ globalClusterIdentifier: string | undefined;
708
+ /**
709
+ * <p>The database cluster Amazon Resource Names (ARNs) for a DocumentDB global cluster.</p>
710
+ * @public
711
+ */
712
+ databaseClusterArns: string[] | undefined;
713
+ }
514
714
  /**
515
715
  * <p>Configuration for an Amazon EC2 Auto Scaling group used in a Region switch plan.</p>
516
716
  * @public
@@ -1470,7 +1670,7 @@ export interface UpdatePlanExecutionStepResponse {
1470
1670
  * <p>Execution block configurations for a workflow in a Region switch plan. An execution block represents a specific type of action to perform during a Region switch.</p>
1471
1671
  * @public
1472
1672
  */
1473
- export type ExecutionBlockConfiguration = ExecutionBlockConfiguration.ArcRoutingControlConfigMember | ExecutionBlockConfiguration.CustomActionLambdaConfigMember | ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EcsCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EksResourceScalingConfigMember | ExecutionBlockConfiguration.ExecutionApprovalConfigMember | ExecutionBlockConfiguration.GlobalAuroraConfigMember | ExecutionBlockConfiguration.ParallelConfigMember | ExecutionBlockConfiguration.RegionSwitchPlanConfigMember | ExecutionBlockConfiguration.Route53HealthCheckConfigMember | ExecutionBlockConfiguration.$UnknownMember;
1673
+ export type ExecutionBlockConfiguration = ExecutionBlockConfiguration.ArcRoutingControlConfigMember | ExecutionBlockConfiguration.CustomActionLambdaConfigMember | ExecutionBlockConfiguration.DocumentDbConfigMember | ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EcsCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EksResourceScalingConfigMember | ExecutionBlockConfiguration.ExecutionApprovalConfigMember | ExecutionBlockConfiguration.GlobalAuroraConfigMember | ExecutionBlockConfiguration.ParallelConfigMember | ExecutionBlockConfiguration.RegionSwitchPlanConfigMember | ExecutionBlockConfiguration.Route53HealthCheckConfigMember | ExecutionBlockConfiguration.$UnknownMember;
1474
1674
  /**
1475
1675
  * @public
1476
1676
  */
@@ -1490,6 +1690,7 @@ export declare namespace ExecutionBlockConfiguration {
1490
1690
  ecsCapacityIncreaseConfig?: never;
1491
1691
  eksResourceScalingConfig?: never;
1492
1692
  route53HealthCheckConfig?: never;
1693
+ documentDbConfig?: never;
1493
1694
  $unknown?: never;
1494
1695
  }
1495
1696
  /**
@@ -1507,6 +1708,7 @@ export declare namespace ExecutionBlockConfiguration {
1507
1708
  ecsCapacityIncreaseConfig?: never;
1508
1709
  eksResourceScalingConfig?: never;
1509
1710
  route53HealthCheckConfig?: never;
1711
+ documentDbConfig?: never;
1510
1712
  $unknown?: never;
1511
1713
  }
1512
1714
  /**
@@ -1524,6 +1726,7 @@ export declare namespace ExecutionBlockConfiguration {
1524
1726
  ecsCapacityIncreaseConfig?: never;
1525
1727
  eksResourceScalingConfig?: never;
1526
1728
  route53HealthCheckConfig?: never;
1729
+ documentDbConfig?: never;
1527
1730
  $unknown?: never;
1528
1731
  }
1529
1732
  /**
@@ -1541,6 +1744,7 @@ export declare namespace ExecutionBlockConfiguration {
1541
1744
  ecsCapacityIncreaseConfig?: never;
1542
1745
  eksResourceScalingConfig?: never;
1543
1746
  route53HealthCheckConfig?: never;
1747
+ documentDbConfig?: never;
1544
1748
  $unknown?: never;
1545
1749
  }
1546
1750
  /**
@@ -1558,6 +1762,7 @@ export declare namespace ExecutionBlockConfiguration {
1558
1762
  ecsCapacityIncreaseConfig?: never;
1559
1763
  eksResourceScalingConfig?: never;
1560
1764
  route53HealthCheckConfig?: never;
1765
+ documentDbConfig?: never;
1561
1766
  $unknown?: never;
1562
1767
  }
1563
1768
  /**
@@ -1575,6 +1780,7 @@ export declare namespace ExecutionBlockConfiguration {
1575
1780
  ecsCapacityIncreaseConfig?: never;
1576
1781
  eksResourceScalingConfig?: never;
1577
1782
  route53HealthCheckConfig?: never;
1783
+ documentDbConfig?: never;
1578
1784
  $unknown?: never;
1579
1785
  }
1580
1786
  /**
@@ -1592,6 +1798,7 @@ export declare namespace ExecutionBlockConfiguration {
1592
1798
  ecsCapacityIncreaseConfig?: never;
1593
1799
  eksResourceScalingConfig?: never;
1594
1800
  route53HealthCheckConfig?: never;
1801
+ documentDbConfig?: never;
1595
1802
  $unknown?: never;
1596
1803
  }
1597
1804
  /**
@@ -1609,6 +1816,7 @@ export declare namespace ExecutionBlockConfiguration {
1609
1816
  ecsCapacityIncreaseConfig: EcsCapacityIncreaseConfiguration;
1610
1817
  eksResourceScalingConfig?: never;
1611
1818
  route53HealthCheckConfig?: never;
1819
+ documentDbConfig?: never;
1612
1820
  $unknown?: never;
1613
1821
  }
1614
1822
  /**
@@ -1626,6 +1834,7 @@ export declare namespace ExecutionBlockConfiguration {
1626
1834
  ecsCapacityIncreaseConfig?: never;
1627
1835
  eksResourceScalingConfig: EksResourceScalingConfiguration;
1628
1836
  route53HealthCheckConfig?: never;
1837
+ documentDbConfig?: never;
1629
1838
  $unknown?: never;
1630
1839
  }
1631
1840
  /**
@@ -1643,6 +1852,25 @@ export declare namespace ExecutionBlockConfiguration {
1643
1852
  ecsCapacityIncreaseConfig?: never;
1644
1853
  eksResourceScalingConfig?: never;
1645
1854
  route53HealthCheckConfig: Route53HealthCheckConfiguration;
1855
+ documentDbConfig?: never;
1856
+ $unknown?: never;
1857
+ }
1858
+ /**
1859
+ * <p>Configuration for Amazon DocumentDB global clusters used in a Region switch plan.</p>
1860
+ * @public
1861
+ */
1862
+ interface DocumentDbConfigMember {
1863
+ customActionLambdaConfig?: never;
1864
+ ec2AsgCapacityIncreaseConfig?: never;
1865
+ executionApprovalConfig?: never;
1866
+ arcRoutingControlConfig?: never;
1867
+ globalAuroraConfig?: never;
1868
+ parallelConfig?: never;
1869
+ regionSwitchPlanConfig?: never;
1870
+ ecsCapacityIncreaseConfig?: never;
1871
+ eksResourceScalingConfig?: never;
1872
+ route53HealthCheckConfig?: never;
1873
+ documentDbConfig: DocumentDbConfiguration;
1646
1874
  $unknown?: never;
1647
1875
  }
1648
1876
  /**
@@ -1659,6 +1887,7 @@ export declare namespace ExecutionBlockConfiguration {
1659
1887
  ecsCapacityIncreaseConfig?: never;
1660
1888
  eksResourceScalingConfig?: never;
1661
1889
  route53HealthCheckConfig?: never;
1890
+ documentDbConfig?: never;
1662
1891
  $unknown: [string, any];
1663
1892
  }
1664
1893
  /**
@@ -1676,6 +1905,7 @@ export declare namespace ExecutionBlockConfiguration {
1676
1905
  ecsCapacityIncreaseConfig: (value: EcsCapacityIncreaseConfiguration) => T;
1677
1906
  eksResourceScalingConfig: (value: EksResourceScalingConfiguration) => T;
1678
1907
  route53HealthCheckConfig: (value: Route53HealthCheckConfiguration) => T;
1908
+ documentDbConfig: (value: DocumentDbConfiguration) => T;
1679
1909
  _: (name: string, value: any) => T;
1680
1910
  }
1681
1911
  }
@@ -1776,6 +2006,11 @@ export interface CreatePlanRequest {
1776
2006
  * @public
1777
2007
  */
1778
2008
  triggers?: Trigger[] | undefined;
2009
+ /**
2010
+ * <p>Configuration for automatic report generation for plan executions. When configured, Region switch automatically generates a report after each plan execution that includes execution events, plan configuration, and CloudWatch alarm states.</p>
2011
+ * @public
2012
+ */
2013
+ reportConfiguration?: ReportConfiguration | undefined;
1779
2014
  /**
1780
2015
  * <p>The name of a Region switch plan.</p>
1781
2016
  * @public
@@ -1842,6 +2077,11 @@ export interface Plan {
1842
2077
  * @public
1843
2078
  */
1844
2079
  triggers?: Trigger[] | undefined;
2080
+ /**
2081
+ * <p>The report configuration for a plan.</p>
2082
+ * @public
2083
+ */
2084
+ reportConfiguration?: ReportConfiguration | undefined;
1845
2085
  /**
1846
2086
  * <p>The name for a plan.</p>
1847
2087
  * @public
@@ -1917,6 +2157,11 @@ export interface UpdatePlanRequest {
1917
2157
  * @public
1918
2158
  */
1919
2159
  triggers?: Trigger[] | undefined;
2160
+ /**
2161
+ * <p>The updated report configuration for the plan.</p>
2162
+ * @public
2163
+ */
2164
+ reportConfiguration?: ReportConfiguration | undefined;
1920
2165
  }
1921
2166
  /**
1922
2167
  * @public
@@ -2002,6 +2247,11 @@ export interface GetPlanExecutionResponse {
2002
2247
  * @public
2003
2248
  */
2004
2249
  actualRecoveryTime?: string | undefined;
2250
+ /**
2251
+ * <p>Information about the location of a generated report, or the cause of its failure.</p>
2252
+ * @public
2253
+ */
2254
+ generatedReportDetails?: GeneratedReport[] | undefined;
2005
2255
  /**
2006
2256
  * <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>nextToken</code> response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call's <code>nextToken</code> response to request the next page of results.</p>
2007
2257
  * @public
@@ -1,4 +1,4 @@
1
- import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
1
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
2
2
  export declare var AbbreviatedExecution$: StaticStructureSchema;
3
3
  export declare var AbbreviatedPlan$: StaticStructureSchema;
4
4
  export declare var AccessDeniedException$: StaticErrorSchema;
@@ -15,6 +15,8 @@ export declare var CreatePlanResponse$: StaticStructureSchema;
15
15
  export declare var CustomActionLambdaConfiguration$: StaticStructureSchema;
16
16
  export declare var DeletePlanRequest$: StaticStructureSchema;
17
17
  export declare var DeletePlanResponse$: StaticStructureSchema;
18
+ export declare var DocumentDbConfiguration$: StaticStructureSchema;
19
+ export declare var DocumentDbUngraceful$: StaticStructureSchema;
18
20
  export declare var Ec2AsgCapacityIncreaseConfiguration$: StaticStructureSchema;
19
21
  export declare var Ec2Ungraceful$: StaticStructureSchema;
20
22
  export declare var EcsCapacityIncreaseConfiguration$: StaticStructureSchema;
@@ -24,6 +26,8 @@ export declare var EksResourceScalingConfiguration$: StaticStructureSchema;
24
26
  export declare var EksResourceScalingUngraceful$: StaticStructureSchema;
25
27
  export declare var ExecutionApprovalConfiguration$: StaticStructureSchema;
26
28
  export declare var ExecutionEvent$: StaticStructureSchema;
29
+ export declare var FailedReportOutput$: StaticStructureSchema;
30
+ export declare var GeneratedReport$: StaticStructureSchema;
27
31
  export declare var GetPlanEvaluationStatusRequest$: StaticStructureSchema;
28
32
  export declare var GetPlanEvaluationStatusResponse$: StaticStructureSchema;
29
33
  export declare var GetPlanExecutionRequest$: StaticStructureSchema;
@@ -59,11 +63,14 @@ export declare var MinimalWorkflow$: StaticStructureSchema;
59
63
  export declare var ParallelExecutionBlockConfiguration$: StaticStructureSchema;
60
64
  export declare var Plan$: StaticStructureSchema;
61
65
  export declare var RegionSwitchPlanConfiguration$: StaticStructureSchema;
66
+ export declare var ReportConfiguration$: StaticStructureSchema;
62
67
  export declare var ResourceNotFoundException$: StaticErrorSchema;
63
68
  export declare var ResourceWarning$: StaticStructureSchema;
64
69
  export declare var Route53HealthCheck$: StaticStructureSchema;
65
70
  export declare var Route53HealthCheckConfiguration$: StaticStructureSchema;
66
71
  export declare var Route53ResourceRecordSet$: StaticStructureSchema;
72
+ export declare var S3ReportOutput$: StaticStructureSchema;
73
+ export declare var S3ReportOutputConfiguration$: StaticStructureSchema;
67
74
  export declare var Service$: StaticStructureSchema;
68
75
  export declare var StartPlanExecutionRequest$: StaticStructureSchema;
69
76
  export declare var StartPlanExecutionResponse$: StaticStructureSchema;
@@ -83,7 +90,9 @@ export declare var UpdatePlanRequest$: StaticStructureSchema;
83
90
  export declare var UpdatePlanResponse$: StaticStructureSchema;
84
91
  export declare var Workflow$: StaticStructureSchema;
85
92
  export declare var ARCRegionSwitchServiceException$: StaticErrorSchema;
86
- export declare var ExecutionBlockConfiguration$: StaticStructureSchema;
93
+ export declare var ExecutionBlockConfiguration$: StaticUnionSchema;
94
+ export declare var ReportOutput$: StaticUnionSchema;
95
+ export declare var ReportOutputConfiguration$: StaticUnionSchema;
87
96
  export declare var ApprovePlanExecutionStep$: StaticOperationSchema;
88
97
  export declare var CancelPlanExecution$: StaticOperationSchema;
89
98
  export declare var CreatePlan$: StaticOperationSchema;
@@ -60,6 +60,13 @@ export declare const ResourceWarningStatus: {
60
60
  };
61
61
  export type ResourceWarningStatus =
62
62
  (typeof ResourceWarningStatus)[keyof typeof ResourceWarningStatus];
63
+ export declare const FailedReportErrorCode: {
64
+ readonly CONFIGURATION_ERROR: "configurationError";
65
+ readonly INSUFFICIENT_PERMISSIONS: "insufficientPermissions";
66
+ readonly INVALID_RESOURCE: "invalidResource";
67
+ };
68
+ export type FailedReportErrorCode =
69
+ (typeof FailedReportErrorCode)[keyof typeof FailedReportErrorCode];
63
70
  export declare const WorkflowTargetAction: {
64
71
  readonly ACTIVATE: "activate";
65
72
  readonly DEACTIVATE: "deactivate";
@@ -82,6 +89,17 @@ export declare const LambdaUngracefulBehavior: {
82
89
  };
83
90
  export type LambdaUngracefulBehavior =
84
91
  (typeof LambdaUngracefulBehavior)[keyof typeof LambdaUngracefulBehavior];
92
+ export declare const DocumentDbDefaultBehavior: {
93
+ readonly FAILOVER: "failover";
94
+ readonly SWITCHOVER_ONLY: "switchoverOnly";
95
+ };
96
+ export type DocumentDbDefaultBehavior =
97
+ (typeof DocumentDbDefaultBehavior)[keyof typeof DocumentDbDefaultBehavior];
98
+ export declare const DocumentDbUngracefulBehavior: {
99
+ readonly FAILOVER: "failover";
100
+ };
101
+ export type DocumentDbUngracefulBehavior =
102
+ (typeof DocumentDbUngracefulBehavior)[keyof typeof DocumentDbUngracefulBehavior];
85
103
  export declare const Ec2AsgCapacityMonitoringApproach: {
86
104
  readonly AUTOSCALING_MAX_IN_LAST_24_HOURS: "autoscalingMaxInLast24Hours";
87
105
  readonly SAMPLED_MAX_IN_LAST_24_HOURS: "sampledMaxInLast24Hours";
@@ -113,6 +131,7 @@ export type GlobalAuroraUngracefulBehavior =
113
131
  export declare const ExecutionBlockType: {
114
132
  readonly AURORA: "AuroraGlobalDatabase";
115
133
  readonly CUSTOM_ACTION_LAMBDA: "CustomActionLambda";
134
+ readonly DOCUMENTDB: "DocumentDb";
116
135
  readonly EC2_ASG: "EC2AutoScaling";
117
136
  readonly ECS: "ECSServiceScaling";
118
137
  readonly EKS_RESOURCE_SCALING: "EKSResourceScaling";
@@ -148,6 +167,7 @@ export declare const ExecutionEventType: {
148
167
  readonly EXECUTION_STARTED: "executionStarted";
149
168
  readonly EXECUTION_SUCCEEDED: "executionSucceeded";
150
169
  readonly EXECUTION_SUCCESS_MONITORING_APPLICATION_HEALTH: "executionSuccessMonitoringApplicationHealth";
170
+ readonly PLAN_EVALUATION_WARNING: "planEvaluationWarning";
151
171
  readonly STEP_CANCELED: "stepCanceled";
152
172
  readonly STEP_EXECUTION_BEHAVIOR_CHANGED_TO_UNGRACEFUL: "stepExecutionBehaviorChangedToUngraceful";
153
173
  readonly STEP_FAILED: "stepFailed";