@aws-sdk/client-arc-region-switch 3.1060.0 → 3.1061.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/errors.js +14 -14
- package/dist-cjs/schemas/schemas_0.js +37 -5
- package/dist-es/models/enums.js +10 -0
- package/dist-es/models/errors.js +12 -12
- package/dist-es/schemas/schemas_0.js +34 -2
- package/dist-types/commands/CreatePlanCommand.d.ts +144 -4
- package/dist-types/commands/GetPlanCommand.d.ts +72 -2
- package/dist-types/commands/GetPlanExecutionCommand.d.ts +72 -2
- package/dist-types/commands/GetPlanInRegionCommand.d.ts +72 -2
- package/dist-types/commands/ListPlanExecutionEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListRoute53HealthChecksCommand.d.ts +3 -0
- package/dist-types/commands/UpdatePlanCommand.d.ts +144 -4
- package/dist-types/models/enums.d.ts +26 -0
- package/dist-types/models/errors.d.ts +10 -10
- package/dist-types/models/models_0.d.ts +250 -6
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +147 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AlarmCondition, AlarmType, Approval, DocumentDbDefaultBehavior, DocumentDbUngracefulBehavior, Ec2AsgCapacityMonitoringApproach, EcsCapacityMonitoringApproach, EksCapacityMonitoringApproach, EvaluationStatus, EventSourceMappingAction, ExecutionAction, ExecutionBlockType, ExecutionEventType, ExecutionMode, ExecutionState, FailedReportErrorCode, GlobalAuroraDefaultBehavior, GlobalAuroraUngracefulBehavior, LambdaEventSourceMappingUngracefulBehavior, LambdaUngracefulBehavior, RecoveryApproach, RegionToRunIn, ResourceWarningStatus, Route53HealthCheckStatus, RoutingControlStateChange, StepStatus, UpdatePlanExecutionAction, UpdatePlanExecutionStepAction, WorkflowTargetAction } from "./enums";
|
|
1
|
+
import type { AlarmCondition, AlarmType, Approval, DocumentDbDefaultBehavior, DocumentDbUngracefulBehavior, Ec2AsgCapacityMonitoringApproach, EcsCapacityMonitoringApproach, EksCapacityMonitoringApproach, EvaluationStatus, EventSourceMappingAction, ExecutionAction, ExecutionBlockType, ExecutionEventType, ExecutionMode, ExecutionState, FailedReportErrorCode, GlobalAuroraDefaultBehavior, GlobalAuroraUngracefulBehavior, LambdaEventSourceMappingUngracefulBehavior, LambdaUngracefulBehavior, NeptuneDefaultBehavior, NeptuneUngracefulBehavior, 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
|
|
@@ -601,6 +601,78 @@ export interface ArcRoutingControlConfiguration {
|
|
|
601
601
|
*/
|
|
602
602
|
regionAndRoutingControls: Record<string, ArcRoutingControlState[]> | undefined;
|
|
603
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* <p>Configuration for Amazon Aurora provisioned cluster scaling used in a Region switch plan.</p>
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export interface AuroraProvisionedScalingConfiguration {
|
|
609
|
+
/**
|
|
610
|
+
* <p>The timeout value specified for the configuration.</p>
|
|
611
|
+
* @public
|
|
612
|
+
*/
|
|
613
|
+
timeoutMinutes?: number | undefined;
|
|
614
|
+
/**
|
|
615
|
+
* <p>The cross account role for the configuration.</p>
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
crossAccountRole?: string | undefined;
|
|
619
|
+
/**
|
|
620
|
+
* <p>The external ID (secret key) for the configuration.</p>
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
externalId?: string | undefined;
|
|
624
|
+
/**
|
|
625
|
+
* <p>The global cluster identifier for a global database.</p>
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
628
|
+
globalClusterIdentifier: string | undefined;
|
|
629
|
+
/**
|
|
630
|
+
* <p>Per-Region configuration that maps each Region to the Aurora database cluster ARN for scaling.</p>
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
633
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
634
|
+
/**
|
|
635
|
+
* <p>Per-Region configuration that maps each Region to the Aurora database instance ARN for scaling.</p>
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
instanceArns: Record<string, string> | undefined;
|
|
639
|
+
}
|
|
640
|
+
/**
|
|
641
|
+
* <p>Configuration for Amazon Aurora Serverless scaling used in a Region switch plan.</p>
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
644
|
+
export interface AuroraServerlessScalingConfiguration {
|
|
645
|
+
/**
|
|
646
|
+
* <p>The timeout value specified for the configuration.</p>
|
|
647
|
+
* @public
|
|
648
|
+
*/
|
|
649
|
+
timeoutMinutes?: number | undefined;
|
|
650
|
+
/**
|
|
651
|
+
* <p>The cross account role for the configuration.</p>
|
|
652
|
+
* @public
|
|
653
|
+
*/
|
|
654
|
+
crossAccountRole?: string | undefined;
|
|
655
|
+
/**
|
|
656
|
+
* <p>The external ID (secret key) for the configuration.</p>
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
externalId?: string | undefined;
|
|
660
|
+
/**
|
|
661
|
+
* <p>The global cluster identifier for a global database.</p>
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
664
|
+
globalClusterIdentifier: string | undefined;
|
|
665
|
+
/**
|
|
666
|
+
* <p>Per-Region configuration that maps each Region to the Aurora database cluster ARN for scaling.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
670
|
+
/**
|
|
671
|
+
* <p>The target capacity percentage for Aurora Serverless scaling.</p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
targetPercent?: number | undefined;
|
|
675
|
+
}
|
|
604
676
|
/**
|
|
605
677
|
* <p>Configuration for Amazon Web Services Lambda functions used in a Region switch plan.</p>
|
|
606
678
|
* @public
|
|
@@ -1083,6 +1155,58 @@ export interface LambdaEventSourceMappingConfiguration {
|
|
|
1083
1155
|
*/
|
|
1084
1156
|
ungraceful?: LambdaEventSourceMappingUngraceful | undefined;
|
|
1085
1157
|
}
|
|
1158
|
+
/**
|
|
1159
|
+
* <p>Configuration for handling failures when performing operations on Neptune global databases.</p>
|
|
1160
|
+
* @public
|
|
1161
|
+
*/
|
|
1162
|
+
export interface NeptuneUngraceful {
|
|
1163
|
+
/**
|
|
1164
|
+
* <p>The settings for ungraceful execution.</p>
|
|
1165
|
+
* @public
|
|
1166
|
+
*/
|
|
1167
|
+
ungraceful?: NeptuneUngracefulBehavior | undefined;
|
|
1168
|
+
}
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>Configuration for Amazon Neptune global databases used in a Region switch plan.</p>
|
|
1171
|
+
* @public
|
|
1172
|
+
*/
|
|
1173
|
+
export interface NeptuneGlobalDatabaseConfiguration {
|
|
1174
|
+
/**
|
|
1175
|
+
* <p>The timeout value specified for the configuration.</p>
|
|
1176
|
+
* @public
|
|
1177
|
+
*/
|
|
1178
|
+
timeoutMinutes?: number | undefined;
|
|
1179
|
+
/**
|
|
1180
|
+
* <p>The cross account role for the configuration.</p>
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1183
|
+
crossAccountRole?: string | undefined;
|
|
1184
|
+
/**
|
|
1185
|
+
* <p>The external ID (secret key) for the configuration.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
externalId?: string | undefined;
|
|
1189
|
+
/**
|
|
1190
|
+
* <p>The behavior for a global database, that is, only allow switchover or also allow failover.</p>
|
|
1191
|
+
* @public
|
|
1192
|
+
*/
|
|
1193
|
+
behavior: NeptuneDefaultBehavior | undefined;
|
|
1194
|
+
/**
|
|
1195
|
+
* <p>The settings for ungraceful execution.</p>
|
|
1196
|
+
* @public
|
|
1197
|
+
*/
|
|
1198
|
+
ungraceful?: NeptuneUngraceful | undefined;
|
|
1199
|
+
/**
|
|
1200
|
+
* <p>The global cluster identifier for a Neptune global database.</p>
|
|
1201
|
+
* @public
|
|
1202
|
+
*/
|
|
1203
|
+
globalClusterIdentifier: string | undefined;
|
|
1204
|
+
/**
|
|
1205
|
+
* <p>The database cluster Amazon Resource Names (ARNs) for a Neptune global database.</p>
|
|
1206
|
+
* @public
|
|
1207
|
+
*/
|
|
1208
|
+
regionDatabaseClusterArns: Record<string, string> | undefined;
|
|
1209
|
+
}
|
|
1086
1210
|
/**
|
|
1087
1211
|
* <p>Configuration for creating an Amazon RDS cross-Region read replica during post-recovery in a Region switch.</p>
|
|
1088
1212
|
* @public
|
|
@@ -1435,7 +1559,7 @@ export interface ListRoute53HealthChecksRequest {
|
|
|
1435
1559
|
*/
|
|
1436
1560
|
recordName?: string | undefined;
|
|
1437
1561
|
/**
|
|
1438
|
-
* <p>The number of
|
|
1562
|
+
* <p>The maximum number of results to return in the response.</p>
|
|
1439
1563
|
* @public
|
|
1440
1564
|
*/
|
|
1441
1565
|
maxResults?: number | undefined;
|
|
@@ -1486,7 +1610,7 @@ export interface ListRoute53HealthChecksResponse {
|
|
|
1486
1610
|
*/
|
|
1487
1611
|
healthChecks?: Route53HealthCheck[] | undefined;
|
|
1488
1612
|
/**
|
|
1489
|
-
* <p>
|
|
1613
|
+
* <p>A pagination token. A response may contain no results while still including a <code>nextToken</code>. Continue paginating until <code>nextToken</code> is null to retrieve all results.</p>
|
|
1490
1614
|
* @public
|
|
1491
1615
|
*/
|
|
1492
1616
|
nextToken?: string | undefined;
|
|
@@ -1511,7 +1635,7 @@ export interface ListRoute53HealthChecksInRegionRequest {
|
|
|
1511
1635
|
*/
|
|
1512
1636
|
recordName?: string | undefined;
|
|
1513
1637
|
/**
|
|
1514
|
-
* <p>The number of
|
|
1638
|
+
* <p>The maximum number of results to return in the response.</p>
|
|
1515
1639
|
* @public
|
|
1516
1640
|
*/
|
|
1517
1641
|
maxResults?: number | undefined;
|
|
@@ -1531,7 +1655,7 @@ export interface ListRoute53HealthChecksInRegionResponse {
|
|
|
1531
1655
|
*/
|
|
1532
1656
|
healthChecks?: Route53HealthCheck[] | undefined;
|
|
1533
1657
|
/**
|
|
1534
|
-
* <p>
|
|
1658
|
+
* <p>A pagination token. A response may contain no results while still including a <code>nextToken</code>. Continue paginating until <code>nextToken</code> is null to retrieve all results.</p>
|
|
1535
1659
|
* @public
|
|
1536
1660
|
*/
|
|
1537
1661
|
nextToken?: string | undefined;
|
|
@@ -1790,7 +1914,7 @@ export interface UpdatePlanExecutionStepResponse {
|
|
|
1790
1914
|
* <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>
|
|
1791
1915
|
* @public
|
|
1792
1916
|
*/
|
|
1793
|
-
export type ExecutionBlockConfiguration = ExecutionBlockConfiguration.ArcRoutingControlConfigMember | ExecutionBlockConfiguration.CustomActionLambdaConfigMember | ExecutionBlockConfiguration.DocumentDbConfigMember | ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EcsCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EksResourceScalingConfigMember | ExecutionBlockConfiguration.ExecutionApprovalConfigMember | ExecutionBlockConfiguration.GlobalAuroraConfigMember | ExecutionBlockConfiguration.LambdaEventSourceMappingConfigMember | ExecutionBlockConfiguration.ParallelConfigMember | ExecutionBlockConfiguration.RdsCreateCrossRegionReadReplicaConfigMember | ExecutionBlockConfiguration.RdsPromoteReadReplicaConfigMember | ExecutionBlockConfiguration.RegionSwitchPlanConfigMember | ExecutionBlockConfiguration.Route53HealthCheckConfigMember | ExecutionBlockConfiguration.$UnknownMember;
|
|
1917
|
+
export type ExecutionBlockConfiguration = ExecutionBlockConfiguration.ArcRoutingControlConfigMember | ExecutionBlockConfiguration.AuroraProvisionedScalingConfigMember | ExecutionBlockConfiguration.AuroraServerlessScalingConfigMember | ExecutionBlockConfiguration.CustomActionLambdaConfigMember | ExecutionBlockConfiguration.DocumentDbConfigMember | ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EcsCapacityIncreaseConfigMember | ExecutionBlockConfiguration.EksResourceScalingConfigMember | ExecutionBlockConfiguration.ExecutionApprovalConfigMember | ExecutionBlockConfiguration.GlobalAuroraConfigMember | ExecutionBlockConfiguration.LambdaEventSourceMappingConfigMember | ExecutionBlockConfiguration.NeptuneGlobalDatabaseConfigMember | ExecutionBlockConfiguration.ParallelConfigMember | ExecutionBlockConfiguration.RdsCreateCrossRegionReadReplicaConfigMember | ExecutionBlockConfiguration.RdsPromoteReadReplicaConfigMember | ExecutionBlockConfiguration.RegionSwitchPlanConfigMember | ExecutionBlockConfiguration.Route53HealthCheckConfigMember | ExecutionBlockConfiguration.$UnknownMember;
|
|
1794
1918
|
/**
|
|
1795
1919
|
* @public
|
|
1796
1920
|
*/
|
|
@@ -1814,6 +1938,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1814
1938
|
rdsPromoteReadReplicaConfig?: never;
|
|
1815
1939
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1816
1940
|
lambdaEventSourceMappingConfig?: never;
|
|
1941
|
+
auroraServerlessScalingConfig?: never;
|
|
1942
|
+
auroraProvisionedScalingConfig?: never;
|
|
1943
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1817
1944
|
$unknown?: never;
|
|
1818
1945
|
}
|
|
1819
1946
|
/**
|
|
@@ -1835,6 +1962,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1835
1962
|
rdsPromoteReadReplicaConfig?: never;
|
|
1836
1963
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1837
1964
|
lambdaEventSourceMappingConfig?: never;
|
|
1965
|
+
auroraServerlessScalingConfig?: never;
|
|
1966
|
+
auroraProvisionedScalingConfig?: never;
|
|
1967
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1838
1968
|
$unknown?: never;
|
|
1839
1969
|
}
|
|
1840
1970
|
/**
|
|
@@ -1856,6 +1986,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1856
1986
|
rdsPromoteReadReplicaConfig?: never;
|
|
1857
1987
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1858
1988
|
lambdaEventSourceMappingConfig?: never;
|
|
1989
|
+
auroraServerlessScalingConfig?: never;
|
|
1990
|
+
auroraProvisionedScalingConfig?: never;
|
|
1991
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1859
1992
|
$unknown?: never;
|
|
1860
1993
|
}
|
|
1861
1994
|
/**
|
|
@@ -1877,6 +2010,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1877
2010
|
rdsPromoteReadReplicaConfig?: never;
|
|
1878
2011
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1879
2012
|
lambdaEventSourceMappingConfig?: never;
|
|
2013
|
+
auroraServerlessScalingConfig?: never;
|
|
2014
|
+
auroraProvisionedScalingConfig?: never;
|
|
2015
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1880
2016
|
$unknown?: never;
|
|
1881
2017
|
}
|
|
1882
2018
|
/**
|
|
@@ -1898,6 +2034,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1898
2034
|
rdsPromoteReadReplicaConfig?: never;
|
|
1899
2035
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1900
2036
|
lambdaEventSourceMappingConfig?: never;
|
|
2037
|
+
auroraServerlessScalingConfig?: never;
|
|
2038
|
+
auroraProvisionedScalingConfig?: never;
|
|
2039
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1901
2040
|
$unknown?: never;
|
|
1902
2041
|
}
|
|
1903
2042
|
/**
|
|
@@ -1919,6 +2058,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1919
2058
|
rdsPromoteReadReplicaConfig?: never;
|
|
1920
2059
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1921
2060
|
lambdaEventSourceMappingConfig?: never;
|
|
2061
|
+
auroraServerlessScalingConfig?: never;
|
|
2062
|
+
auroraProvisionedScalingConfig?: never;
|
|
2063
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1922
2064
|
$unknown?: never;
|
|
1923
2065
|
}
|
|
1924
2066
|
/**
|
|
@@ -1940,6 +2082,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1940
2082
|
rdsPromoteReadReplicaConfig?: never;
|
|
1941
2083
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1942
2084
|
lambdaEventSourceMappingConfig?: never;
|
|
2085
|
+
auroraServerlessScalingConfig?: never;
|
|
2086
|
+
auroraProvisionedScalingConfig?: never;
|
|
2087
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1943
2088
|
$unknown?: never;
|
|
1944
2089
|
}
|
|
1945
2090
|
/**
|
|
@@ -1961,6 +2106,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1961
2106
|
rdsPromoteReadReplicaConfig?: never;
|
|
1962
2107
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1963
2108
|
lambdaEventSourceMappingConfig?: never;
|
|
2109
|
+
auroraServerlessScalingConfig?: never;
|
|
2110
|
+
auroraProvisionedScalingConfig?: never;
|
|
2111
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1964
2112
|
$unknown?: never;
|
|
1965
2113
|
}
|
|
1966
2114
|
/**
|
|
@@ -1982,6 +2130,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
1982
2130
|
rdsPromoteReadReplicaConfig?: never;
|
|
1983
2131
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
1984
2132
|
lambdaEventSourceMappingConfig?: never;
|
|
2133
|
+
auroraServerlessScalingConfig?: never;
|
|
2134
|
+
auroraProvisionedScalingConfig?: never;
|
|
2135
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
1985
2136
|
$unknown?: never;
|
|
1986
2137
|
}
|
|
1987
2138
|
/**
|
|
@@ -2003,6 +2154,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2003
2154
|
rdsPromoteReadReplicaConfig?: never;
|
|
2004
2155
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2005
2156
|
lambdaEventSourceMappingConfig?: never;
|
|
2157
|
+
auroraServerlessScalingConfig?: never;
|
|
2158
|
+
auroraProvisionedScalingConfig?: never;
|
|
2159
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2006
2160
|
$unknown?: never;
|
|
2007
2161
|
}
|
|
2008
2162
|
/**
|
|
@@ -2024,6 +2178,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2024
2178
|
rdsPromoteReadReplicaConfig?: never;
|
|
2025
2179
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2026
2180
|
lambdaEventSourceMappingConfig?: never;
|
|
2181
|
+
auroraServerlessScalingConfig?: never;
|
|
2182
|
+
auroraProvisionedScalingConfig?: never;
|
|
2183
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2027
2184
|
$unknown?: never;
|
|
2028
2185
|
}
|
|
2029
2186
|
/**
|
|
@@ -2045,6 +2202,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2045
2202
|
rdsPromoteReadReplicaConfig: RdsPromoteReadReplicaConfiguration;
|
|
2046
2203
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2047
2204
|
lambdaEventSourceMappingConfig?: never;
|
|
2205
|
+
auroraServerlessScalingConfig?: never;
|
|
2206
|
+
auroraProvisionedScalingConfig?: never;
|
|
2207
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2048
2208
|
$unknown?: never;
|
|
2049
2209
|
}
|
|
2050
2210
|
/**
|
|
@@ -2066,6 +2226,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2066
2226
|
rdsPromoteReadReplicaConfig?: never;
|
|
2067
2227
|
rdsCreateCrossRegionReadReplicaConfig: RdsCreateCrossRegionReplicaConfiguration;
|
|
2068
2228
|
lambdaEventSourceMappingConfig?: never;
|
|
2229
|
+
auroraServerlessScalingConfig?: never;
|
|
2230
|
+
auroraProvisionedScalingConfig?: never;
|
|
2231
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2069
2232
|
$unknown?: never;
|
|
2070
2233
|
}
|
|
2071
2234
|
/**
|
|
@@ -2087,6 +2250,81 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2087
2250
|
rdsPromoteReadReplicaConfig?: never;
|
|
2088
2251
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2089
2252
|
lambdaEventSourceMappingConfig: LambdaEventSourceMappingConfiguration;
|
|
2253
|
+
auroraServerlessScalingConfig?: never;
|
|
2254
|
+
auroraProvisionedScalingConfig?: never;
|
|
2255
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2256
|
+
$unknown?: never;
|
|
2257
|
+
}
|
|
2258
|
+
/**
|
|
2259
|
+
* <p>An Aurora Serverless scaling execution block.</p>
|
|
2260
|
+
* @public
|
|
2261
|
+
*/
|
|
2262
|
+
interface AuroraServerlessScalingConfigMember {
|
|
2263
|
+
customActionLambdaConfig?: never;
|
|
2264
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
2265
|
+
executionApprovalConfig?: never;
|
|
2266
|
+
arcRoutingControlConfig?: never;
|
|
2267
|
+
globalAuroraConfig?: never;
|
|
2268
|
+
parallelConfig?: never;
|
|
2269
|
+
regionSwitchPlanConfig?: never;
|
|
2270
|
+
ecsCapacityIncreaseConfig?: never;
|
|
2271
|
+
eksResourceScalingConfig?: never;
|
|
2272
|
+
route53HealthCheckConfig?: never;
|
|
2273
|
+
documentDbConfig?: never;
|
|
2274
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
2275
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2276
|
+
lambdaEventSourceMappingConfig?: never;
|
|
2277
|
+
auroraServerlessScalingConfig: AuroraServerlessScalingConfiguration;
|
|
2278
|
+
auroraProvisionedScalingConfig?: never;
|
|
2279
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2280
|
+
$unknown?: never;
|
|
2281
|
+
}
|
|
2282
|
+
/**
|
|
2283
|
+
* <p>An Aurora provisioned cluster scaling execution block.</p>
|
|
2284
|
+
* @public
|
|
2285
|
+
*/
|
|
2286
|
+
interface AuroraProvisionedScalingConfigMember {
|
|
2287
|
+
customActionLambdaConfig?: never;
|
|
2288
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
2289
|
+
executionApprovalConfig?: never;
|
|
2290
|
+
arcRoutingControlConfig?: never;
|
|
2291
|
+
globalAuroraConfig?: never;
|
|
2292
|
+
parallelConfig?: never;
|
|
2293
|
+
regionSwitchPlanConfig?: never;
|
|
2294
|
+
ecsCapacityIncreaseConfig?: never;
|
|
2295
|
+
eksResourceScalingConfig?: never;
|
|
2296
|
+
route53HealthCheckConfig?: never;
|
|
2297
|
+
documentDbConfig?: never;
|
|
2298
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
2299
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2300
|
+
lambdaEventSourceMappingConfig?: never;
|
|
2301
|
+
auroraServerlessScalingConfig?: never;
|
|
2302
|
+
auroraProvisionedScalingConfig: AuroraProvisionedScalingConfiguration;
|
|
2303
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2304
|
+
$unknown?: never;
|
|
2305
|
+
}
|
|
2306
|
+
/**
|
|
2307
|
+
* <p>A Neptune global database execution block.</p>
|
|
2308
|
+
* @public
|
|
2309
|
+
*/
|
|
2310
|
+
interface NeptuneGlobalDatabaseConfigMember {
|
|
2311
|
+
customActionLambdaConfig?: never;
|
|
2312
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
2313
|
+
executionApprovalConfig?: never;
|
|
2314
|
+
arcRoutingControlConfig?: never;
|
|
2315
|
+
globalAuroraConfig?: never;
|
|
2316
|
+
parallelConfig?: never;
|
|
2317
|
+
regionSwitchPlanConfig?: never;
|
|
2318
|
+
ecsCapacityIncreaseConfig?: never;
|
|
2319
|
+
eksResourceScalingConfig?: never;
|
|
2320
|
+
route53HealthCheckConfig?: never;
|
|
2321
|
+
documentDbConfig?: never;
|
|
2322
|
+
rdsPromoteReadReplicaConfig?: never;
|
|
2323
|
+
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2324
|
+
lambdaEventSourceMappingConfig?: never;
|
|
2325
|
+
auroraServerlessScalingConfig?: never;
|
|
2326
|
+
auroraProvisionedScalingConfig?: never;
|
|
2327
|
+
neptuneGlobalDatabaseConfig: NeptuneGlobalDatabaseConfiguration;
|
|
2090
2328
|
$unknown?: never;
|
|
2091
2329
|
}
|
|
2092
2330
|
/**
|
|
@@ -2107,6 +2345,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2107
2345
|
rdsPromoteReadReplicaConfig?: never;
|
|
2108
2346
|
rdsCreateCrossRegionReadReplicaConfig?: never;
|
|
2109
2347
|
lambdaEventSourceMappingConfig?: never;
|
|
2348
|
+
auroraServerlessScalingConfig?: never;
|
|
2349
|
+
auroraProvisionedScalingConfig?: never;
|
|
2350
|
+
neptuneGlobalDatabaseConfig?: never;
|
|
2110
2351
|
$unknown: [string, any];
|
|
2111
2352
|
}
|
|
2112
2353
|
/**
|
|
@@ -2128,6 +2369,9 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
2128
2369
|
rdsPromoteReadReplicaConfig: (value: RdsPromoteReadReplicaConfiguration) => T;
|
|
2129
2370
|
rdsCreateCrossRegionReadReplicaConfig: (value: RdsCreateCrossRegionReplicaConfiguration) => T;
|
|
2130
2371
|
lambdaEventSourceMappingConfig: (value: LambdaEventSourceMappingConfiguration) => T;
|
|
2372
|
+
auroraServerlessScalingConfig: (value: AuroraServerlessScalingConfiguration) => T;
|
|
2373
|
+
auroraProvisionedScalingConfig: (value: AuroraProvisionedScalingConfiguration) => T;
|
|
2374
|
+
neptuneGlobalDatabaseConfig: (value: NeptuneGlobalDatabaseConfiguration) => T;
|
|
2131
2375
|
_: (name: string, value: any) => T;
|
|
2132
2376
|
}
|
|
2133
2377
|
}
|
|
@@ -20,6 +20,8 @@ export declare var ArcRoutingControlConfiguration$: StaticStructureSchema;
|
|
|
20
20
|
export declare var ArcRoutingControlState$: StaticStructureSchema;
|
|
21
21
|
export declare var Asg$: StaticStructureSchema;
|
|
22
22
|
export declare var AssociatedAlarm$: StaticStructureSchema;
|
|
23
|
+
export declare var AuroraProvisionedScalingConfiguration$: StaticStructureSchema;
|
|
24
|
+
export declare var AuroraServerlessScalingConfiguration$: StaticStructureSchema;
|
|
23
25
|
export declare var CancelPlanExecutionRequest$: StaticStructureSchema;
|
|
24
26
|
export declare var CancelPlanExecutionResponse$: StaticStructureSchema;
|
|
25
27
|
export declare var CreatePlanRequest$: StaticStructureSchema;
|
|
@@ -72,6 +74,8 @@ export declare var ListRoute53HealthChecksResponse$: StaticStructureSchema;
|
|
|
72
74
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
73
75
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
74
76
|
export declare var MinimalWorkflow$: StaticStructureSchema;
|
|
77
|
+
export declare var NeptuneGlobalDatabaseConfiguration$: StaticStructureSchema;
|
|
78
|
+
export declare var NeptuneUngraceful$: StaticStructureSchema;
|
|
75
79
|
export declare var ParallelExecutionBlockConfiguration$: StaticStructureSchema;
|
|
76
80
|
export declare var Plan$: StaticStructureSchema;
|
|
77
81
|
export declare var RdsCreateCrossRegionReplicaConfiguration$: StaticStructureSchema;
|
|
@@ -143,8 +143,21 @@ export declare const LambdaEventSourceMappingUngracefulBehavior: {
|
|
|
143
143
|
};
|
|
144
144
|
export type LambdaEventSourceMappingUngracefulBehavior =
|
|
145
145
|
(typeof LambdaEventSourceMappingUngracefulBehavior)[keyof typeof LambdaEventSourceMappingUngracefulBehavior];
|
|
146
|
+
export declare const NeptuneDefaultBehavior: {
|
|
147
|
+
readonly FAILOVER: "failover";
|
|
148
|
+
readonly SWITCHOVER_ONLY: "switchoverOnly";
|
|
149
|
+
};
|
|
150
|
+
export type NeptuneDefaultBehavior =
|
|
151
|
+
(typeof NeptuneDefaultBehavior)[keyof typeof NeptuneDefaultBehavior];
|
|
152
|
+
export declare const NeptuneUngracefulBehavior: {
|
|
153
|
+
readonly FAILOVER: "failover";
|
|
154
|
+
};
|
|
155
|
+
export type NeptuneUngracefulBehavior =
|
|
156
|
+
(typeof NeptuneUngracefulBehavior)[keyof typeof NeptuneUngracefulBehavior];
|
|
146
157
|
export declare const ExecutionBlockType: {
|
|
147
158
|
readonly AURORA: "AuroraGlobalDatabase";
|
|
159
|
+
readonly AURORA_PROVISIONED_SCALING: "AuroraProvisionedScaling";
|
|
160
|
+
readonly AURORA_SERVERLESS_SCALING: "AuroraServerlessScaling";
|
|
148
161
|
readonly CUSTOM_ACTION_LAMBDA: "CustomActionLambda";
|
|
149
162
|
readonly DOCUMENTDB: "DocumentDb";
|
|
150
163
|
readonly EC2_ASG: "EC2AutoScaling";
|
|
@@ -152,6 +165,7 @@ export declare const ExecutionBlockType: {
|
|
|
152
165
|
readonly EKS_RESOURCE_SCALING: "EKSResourceScaling";
|
|
153
166
|
readonly EXECUTION_APPROVAL: "ManualApproval";
|
|
154
167
|
readonly LAMBDA_EVENT_SOURCE_MAPPING: "LambdaEventSourceMapping";
|
|
168
|
+
readonly NEPTUNE: "NeptuneGlobalDatabase";
|
|
155
169
|
readonly PARALLEL: "Parallel";
|
|
156
170
|
readonly RDS_CREATE_CROSS_REGION_REPLICA: "RdsCreateCrossRegionReplica";
|
|
157
171
|
readonly RDS_PROMOTE_READ_REPLICA: "RdsPromoteReadReplica";
|
|
@@ -14,13 +14,6 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
14
14
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
15
15
|
);
|
|
16
16
|
}
|
|
17
|
-
export declare class InternalServerException extends __BaseException {
|
|
18
|
-
readonly name: "InternalServerException";
|
|
19
|
-
readonly $fault: "server";
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
17
|
export declare class IllegalArgumentException extends __BaseException {
|
|
25
18
|
readonly name: "IllegalArgumentException";
|
|
26
19
|
readonly $fault: "client";
|
|
@@ -28,6 +21,13 @@ export declare class IllegalArgumentException extends __BaseException {
|
|
|
28
21
|
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
29
22
|
);
|
|
30
23
|
}
|
|
24
|
+
export declare class InternalServerException extends __BaseException {
|
|
25
|
+
readonly name: "InternalServerException";
|
|
26
|
+
readonly $fault: "server";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
31
|
export declare class IllegalStateException extends __BaseException {
|
|
32
32
|
readonly name: "IllegalStateException";
|
|
33
33
|
readonly $fault: "client";
|