aws-sdk-arcregionswitch 1.18.0 → 1.19.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50f8339b020dad7e08c033cae7d1fefb4d059d46b82be7bc33382bf90d22b691
4
- data.tar.gz: 1f1da9cc32083299f8b13222049a1f534e303db250fc0e373cf83ee945884a17
3
+ metadata.gz: 38fa14406442a046b381952b84ad3ca2b0298d4e5cbb19dc17076ad7c5c4a5d6
4
+ data.tar.gz: d2d98562adeec6699c1d6b022d8cc1e540254348d822bebbb9c464d3edf9d535
5
5
  SHA512:
6
- metadata.gz: cb16292df4936c4c1feef9d26e93627b5e0959d60688da89f4fbdaa9e70a0e7fb9db591dd710e1aa20d908aa010e8b83e0cb000db23fc156a91dc17373909c12
7
- data.tar.gz: cca5558aeb6dbdd53a34ef830617e4c3686d828b18ba5671755b5bde286d22f7ac1ee75efe8766cdc095d8fe24a086d64a0e4b172dd75985ecd5f95d2e438578
6
+ metadata.gz: fca95c3af0020e56b5f8e79296eaf3e6d4715ea587b9a2cf9dd1f068c77b83264721f3def16e05060136fa975bb9d142ea2825ca05526e4a31f82e21fc5195d0
7
+ data.tar.gz: 39edee1fee0729583435f3ab5330976bbb7e25db82377546812d32535197f4cb250e04bcfa7330435e0da9c529539421ac6f60fa5ef39f36c59fe23a513ce76c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2026-06-03)
5
+ ------------------
6
+
7
+ * Feature - ARC Region Switch now supports three new execution blocks for multi-Region database workloads-Amazon Aurora Serverless scaling, Amazon Aurora Provisioned scaling, and Amazon Neptune Global Database failover.
8
+
4
9
  1.18.0 (2026-05-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -796,8 +796,43 @@ module Aws::ARCRegionswitch
796
796
  # behavior: "skip", # accepts skip
797
797
  # },
798
798
  # },
799
+ # aurora_serverless_scaling_config: {
800
+ # timeout_minutes: 1,
801
+ # cross_account_role: "IamRoleArn",
802
+ # external_id: "String",
803
+ # global_cluster_identifier: "GlobalClusterIdentifier", # required
804
+ # region_database_cluster_arns: { # required
805
+ # "Region" => "AuroraClusterArn",
806
+ # },
807
+ # target_percent: 1,
808
+ # },
809
+ # aurora_provisioned_scaling_config: {
810
+ # timeout_minutes: 1,
811
+ # cross_account_role: "IamRoleArn",
812
+ # external_id: "String",
813
+ # global_cluster_identifier: "GlobalClusterIdentifier", # required
814
+ # region_database_cluster_arns: { # required
815
+ # "Region" => "AuroraClusterArn",
816
+ # },
817
+ # instance_arns: { # required
818
+ # "Region" => "AuroraInstanceArn",
819
+ # },
820
+ # },
821
+ # neptune_global_database_config: {
822
+ # timeout_minutes: 1,
823
+ # cross_account_role: "IamRoleArn",
824
+ # external_id: "String",
825
+ # behavior: "switchoverOnly", # required, accepts switchoverOnly, failover
826
+ # ungraceful: {
827
+ # ungraceful: "failover", # accepts failover
828
+ # },
829
+ # global_cluster_identifier: "NeptuneGlobalClusterIdentifier", # required
830
+ # region_database_cluster_arns: { # required
831
+ # "Region" => "NeptuneClusterArn",
832
+ # },
833
+ # },
799
834
  # },
800
- # execution_block_type: "CustomActionLambda", # required, accepts CustomActionLambda, ManualApproval, AuroraGlobalDatabase, EC2AutoScaling, ARCRoutingControl, ARCRegionSwitchPlan, Parallel, ECSServiceScaling, EKSResourceScaling, Route53HealthCheck, DocumentDb, RdsPromoteReadReplica, RdsCreateCrossRegionReplica, LambdaEventSourceMapping
835
+ # execution_block_type: "CustomActionLambda", # required, accepts CustomActionLambda, ManualApproval, AuroraGlobalDatabase, EC2AutoScaling, ARCRoutingControl, ARCRegionSwitchPlan, Parallel, ECSServiceScaling, EKSResourceScaling, Route53HealthCheck, DocumentDb, RdsPromoteReadReplica, RdsCreateCrossRegionReplica, LambdaEventSourceMapping, AuroraServerlessScaling, AuroraProvisionedScaling, NeptuneGlobalDatabase
801
836
  # },
802
837
  # ],
803
838
  # workflow_target_action: "activate", # required, accepts activate, deactivate, postRecovery
@@ -951,7 +986,30 @@ module Aws::ARCRegionswitch
951
986
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].external_id #=> String
952
987
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].arn #=> String
953
988
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.ungraceful.behavior #=> String, one of "skip"
954
- # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
989
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.timeout_minutes #=> Integer
990
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.cross_account_role #=> String
991
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.external_id #=> String
992
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.global_cluster_identifier #=> String
993
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns #=> Hash
994
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns["Region"] #=> String
995
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.target_percent #=> Integer
996
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.timeout_minutes #=> Integer
997
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.cross_account_role #=> String
998
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.external_id #=> String
999
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.global_cluster_identifier #=> String
1000
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns #=> Hash
1001
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns["Region"] #=> String
1002
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns #=> Hash
1003
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns["Region"] #=> String
1004
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.timeout_minutes #=> Integer
1005
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.cross_account_role #=> String
1006
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.external_id #=> String
1007
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.behavior #=> String, one of "switchoverOnly", "failover"
1008
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.ungraceful.ungraceful #=> String, one of "failover"
1009
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.global_cluster_identifier #=> String
1010
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns #=> Hash
1011
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns["Region"] #=> String
1012
+ # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
955
1013
  # resp.plan.workflows[0].workflow_target_action #=> String, one of "activate", "deactivate", "postRecovery"
956
1014
  # resp.plan.workflows[0].workflow_target_region #=> String
957
1015
  # resp.plan.workflows[0].workflow_description #=> String
@@ -1135,7 +1193,30 @@ module Aws::ARCRegionswitch
1135
1193
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].external_id #=> String
1136
1194
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].arn #=> String
1137
1195
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.ungraceful.behavior #=> String, one of "skip"
1138
- # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
1196
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.timeout_minutes #=> Integer
1197
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.cross_account_role #=> String
1198
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.external_id #=> String
1199
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.global_cluster_identifier #=> String
1200
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns #=> Hash
1201
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns["Region"] #=> String
1202
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.target_percent #=> Integer
1203
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.timeout_minutes #=> Integer
1204
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.cross_account_role #=> String
1205
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.external_id #=> String
1206
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.global_cluster_identifier #=> String
1207
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns #=> Hash
1208
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns["Region"] #=> String
1209
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns #=> Hash
1210
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns["Region"] #=> String
1211
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.timeout_minutes #=> Integer
1212
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.cross_account_role #=> String
1213
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.external_id #=> String
1214
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.behavior #=> String, one of "switchoverOnly", "failover"
1215
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.ungraceful.ungraceful #=> String, one of "failover"
1216
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.global_cluster_identifier #=> String
1217
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns #=> Hash
1218
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns["Region"] #=> String
1219
+ # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
1139
1220
  # resp.plan.workflows[0].workflow_target_action #=> String, one of "activate", "deactivate", "postRecovery"
1140
1221
  # resp.plan.workflows[0].workflow_target_region #=> String
1141
1222
  # resp.plan.workflows[0].workflow_description #=> String
@@ -1417,7 +1498,30 @@ module Aws::ARCRegionswitch
1417
1498
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].external_id #=> String
1418
1499
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].arn #=> String
1419
1500
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.ungraceful.behavior #=> String, one of "skip"
1420
- # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
1501
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.timeout_minutes #=> Integer
1502
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.cross_account_role #=> String
1503
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.external_id #=> String
1504
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.global_cluster_identifier #=> String
1505
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns #=> Hash
1506
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns["Region"] #=> String
1507
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.target_percent #=> Integer
1508
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.timeout_minutes #=> Integer
1509
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.cross_account_role #=> String
1510
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.external_id #=> String
1511
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.global_cluster_identifier #=> String
1512
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns #=> Hash
1513
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns["Region"] #=> String
1514
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns #=> Hash
1515
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns["Region"] #=> String
1516
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.timeout_minutes #=> Integer
1517
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.cross_account_role #=> String
1518
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.external_id #=> String
1519
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.behavior #=> String, one of "switchoverOnly", "failover"
1520
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.ungraceful.ungraceful #=> String, one of "failover"
1521
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.global_cluster_identifier #=> String
1522
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns #=> Hash
1523
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns["Region"] #=> String
1524
+ # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
1421
1525
  # resp.plan.workflows[0].workflow_target_action #=> String, one of "activate", "deactivate", "postRecovery"
1422
1526
  # resp.plan.workflows[0].workflow_target_region #=> String
1423
1527
  # resp.plan.workflows[0].workflow_description #=> String
@@ -1589,7 +1693,30 @@ module Aws::ARCRegionswitch
1589
1693
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].external_id #=> String
1590
1694
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].arn #=> String
1591
1695
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.ungraceful.behavior #=> String, one of "skip"
1592
- # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
1696
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.timeout_minutes #=> Integer
1697
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.cross_account_role #=> String
1698
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.external_id #=> String
1699
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.global_cluster_identifier #=> String
1700
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns #=> Hash
1701
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns["Region"] #=> String
1702
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.target_percent #=> Integer
1703
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.timeout_minutes #=> Integer
1704
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.cross_account_role #=> String
1705
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.external_id #=> String
1706
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.global_cluster_identifier #=> String
1707
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns #=> Hash
1708
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns["Region"] #=> String
1709
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns #=> Hash
1710
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns["Region"] #=> String
1711
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.timeout_minutes #=> Integer
1712
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.cross_account_role #=> String
1713
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.external_id #=> String
1714
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.behavior #=> String, one of "switchoverOnly", "failover"
1715
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.ungraceful.ungraceful #=> String, one of "failover"
1716
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.global_cluster_identifier #=> String
1717
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns #=> Hash
1718
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns["Region"] #=> String
1719
+ # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
1593
1720
  # resp.plan.workflows[0].workflow_target_action #=> String, one of "activate", "deactivate", "postRecovery"
1594
1721
  # resp.plan.workflows[0].workflow_target_region #=> String
1595
1722
  # resp.plan.workflows[0].workflow_description #=> String
@@ -1674,7 +1801,7 @@ module Aws::ARCRegionswitch
1674
1801
  # resp.items[0].timestamp #=> Time
1675
1802
  # resp.items[0].type #=> String, one of "unknown", "executionPending", "executionStarted", "executionSucceeded", "executionFailed", "executionPausing", "executionPaused", "executionCanceling", "executionCanceled", "executionPendingApproval", "executionBehaviorChangedToUngraceful", "executionBehaviorChangedToGraceful", "executionPendingChildPlanManualApproval", "executionSuccessMonitoringApplicationHealth", "stepStarted", "stepUpdate", "stepSucceeded", "stepFailed", "stepSkipped", "stepPausedByError", "stepPausedByOperator", "stepCanceled", "stepPendingApproval", "stepExecutionBehaviorChangedToUngraceful", "stepPendingApplicationHealthMonitor", "planEvaluationWarning"
1676
1803
  # resp.items[0].step_name #=> String
1677
- # resp.items[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
1804
+ # resp.items[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
1678
1805
  # resp.items[0].resources #=> Array
1679
1806
  # resp.items[0].resources[0] #=> String
1680
1807
  # resp.items[0].error #=> String
@@ -1875,7 +2002,7 @@ module Aws::ARCRegionswitch
1875
2002
  # The record name for the health checks.
1876
2003
  #
1877
2004
  # @option params [Integer] :max_results
1878
- # The number of objects that you want to return with this call.
2005
+ # The maximum number of results to return in the response.
1879
2006
  #
1880
2007
  # @option params [String] :next_token
1881
2008
  # Specifies that you want to receive the next page of results. Valid
@@ -1933,7 +2060,7 @@ module Aws::ARCRegionswitch
1933
2060
  # The record name for the health checks.
1934
2061
  #
1935
2062
  # @option params [Integer] :max_results
1936
- # The number of objects that you want to return with this call.
2063
+ # The maximum number of results to return in the response.
1937
2064
  #
1938
2065
  # @option params [String] :next_token
1939
2066
  # Specifies that you want to receive the next page of results. Valid
@@ -2384,8 +2511,43 @@ module Aws::ARCRegionswitch
2384
2511
  # behavior: "skip", # accepts skip
2385
2512
  # },
2386
2513
  # },
2514
+ # aurora_serverless_scaling_config: {
2515
+ # timeout_minutes: 1,
2516
+ # cross_account_role: "IamRoleArn",
2517
+ # external_id: "String",
2518
+ # global_cluster_identifier: "GlobalClusterIdentifier", # required
2519
+ # region_database_cluster_arns: { # required
2520
+ # "Region" => "AuroraClusterArn",
2521
+ # },
2522
+ # target_percent: 1,
2523
+ # },
2524
+ # aurora_provisioned_scaling_config: {
2525
+ # timeout_minutes: 1,
2526
+ # cross_account_role: "IamRoleArn",
2527
+ # external_id: "String",
2528
+ # global_cluster_identifier: "GlobalClusterIdentifier", # required
2529
+ # region_database_cluster_arns: { # required
2530
+ # "Region" => "AuroraClusterArn",
2531
+ # },
2532
+ # instance_arns: { # required
2533
+ # "Region" => "AuroraInstanceArn",
2534
+ # },
2535
+ # },
2536
+ # neptune_global_database_config: {
2537
+ # timeout_minutes: 1,
2538
+ # cross_account_role: "IamRoleArn",
2539
+ # external_id: "String",
2540
+ # behavior: "switchoverOnly", # required, accepts switchoverOnly, failover
2541
+ # ungraceful: {
2542
+ # ungraceful: "failover", # accepts failover
2543
+ # },
2544
+ # global_cluster_identifier: "NeptuneGlobalClusterIdentifier", # required
2545
+ # region_database_cluster_arns: { # required
2546
+ # "Region" => "NeptuneClusterArn",
2547
+ # },
2548
+ # },
2387
2549
  # },
2388
- # execution_block_type: "CustomActionLambda", # required, accepts CustomActionLambda, ManualApproval, AuroraGlobalDatabase, EC2AutoScaling, ARCRoutingControl, ARCRegionSwitchPlan, Parallel, ECSServiceScaling, EKSResourceScaling, Route53HealthCheck, DocumentDb, RdsPromoteReadReplica, RdsCreateCrossRegionReplica, LambdaEventSourceMapping
2550
+ # execution_block_type: "CustomActionLambda", # required, accepts CustomActionLambda, ManualApproval, AuroraGlobalDatabase, EC2AutoScaling, ARCRoutingControl, ARCRegionSwitchPlan, Parallel, ECSServiceScaling, EKSResourceScaling, Route53HealthCheck, DocumentDb, RdsPromoteReadReplica, RdsCreateCrossRegionReplica, LambdaEventSourceMapping, AuroraServerlessScaling, AuroraProvisionedScaling, NeptuneGlobalDatabase
2389
2551
  # },
2390
2552
  # ],
2391
2553
  # workflow_target_action: "activate", # required, accepts activate, deactivate, postRecovery
@@ -2532,7 +2694,30 @@ module Aws::ARCRegionswitch
2532
2694
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].external_id #=> String
2533
2695
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.region_event_source_mappings["Region"].arn #=> String
2534
2696
  # resp.plan.workflows[0].steps[0].execution_block_configuration.lambda_event_source_mapping_config.ungraceful.behavior #=> String, one of "skip"
2535
- # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping"
2697
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.timeout_minutes #=> Integer
2698
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.cross_account_role #=> String
2699
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.external_id #=> String
2700
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.global_cluster_identifier #=> String
2701
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns #=> Hash
2702
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.region_database_cluster_arns["Region"] #=> String
2703
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_serverless_scaling_config.target_percent #=> Integer
2704
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.timeout_minutes #=> Integer
2705
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.cross_account_role #=> String
2706
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.external_id #=> String
2707
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.global_cluster_identifier #=> String
2708
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns #=> Hash
2709
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.region_database_cluster_arns["Region"] #=> String
2710
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns #=> Hash
2711
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.aurora_provisioned_scaling_config.instance_arns["Region"] #=> String
2712
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.timeout_minutes #=> Integer
2713
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.cross_account_role #=> String
2714
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.external_id #=> String
2715
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.behavior #=> String, one of "switchoverOnly", "failover"
2716
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.ungraceful.ungraceful #=> String, one of "failover"
2717
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.global_cluster_identifier #=> String
2718
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns #=> Hash
2719
+ # resp.plan.workflows[0].steps[0].execution_block_configuration.neptune_global_database_config.region_database_cluster_arns["Region"] #=> String
2720
+ # resp.plan.workflows[0].steps[0].execution_block_type #=> String, one of "CustomActionLambda", "ManualApproval", "AuroraGlobalDatabase", "EC2AutoScaling", "ARCRoutingControl", "ARCRegionSwitchPlan", "Parallel", "ECSServiceScaling", "EKSResourceScaling", "Route53HealthCheck", "DocumentDb", "RdsPromoteReadReplica", "RdsCreateCrossRegionReplica", "LambdaEventSourceMapping", "AuroraServerlessScaling", "AuroraProvisionedScaling", "NeptuneGlobalDatabase"
2536
2721
  # resp.plan.workflows[0].workflow_target_action #=> String, one of "activate", "deactivate", "postRecovery"
2537
2722
  # resp.plan.workflows[0].workflow_target_region #=> String
2538
2723
  # resp.plan.workflows[0].workflow_description #=> String
@@ -2670,7 +2855,7 @@ module Aws::ARCRegionswitch
2670
2855
  tracer: tracer
2671
2856
  )
2672
2857
  context[:gem_name] = 'aws-sdk-arcregionswitch'
2673
- context[:gem_version] = '1.18.0'
2858
+ context[:gem_version] = '1.19.0'
2674
2859
  Seahorse::Client::Request.new(handlers, context)
2675
2860
  end
2676
2861
 
@@ -36,6 +36,11 @@ module Aws::ARCRegionswitch
36
36
  AssociatedAlarmMap = Shapes::MapShape.new(name: 'AssociatedAlarmMap')
37
37
  AuroraClusterArn = Shapes::StringShape.new(name: 'AuroraClusterArn')
38
38
  AuroraClusterArns = Shapes::ListShape.new(name: 'AuroraClusterArns')
39
+ AuroraInstanceArn = Shapes::StringShape.new(name: 'AuroraInstanceArn')
40
+ AuroraProvisionedScalingConfiguration = Shapes::StructureShape.new(name: 'AuroraProvisionedScalingConfiguration')
41
+ AuroraProvisionedScalingConfigurationTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'AuroraProvisionedScalingConfigurationTimeoutMinutesInteger')
42
+ AuroraServerlessScalingConfiguration = Shapes::StructureShape.new(name: 'AuroraServerlessScalingConfiguration')
43
+ AuroraServerlessScalingConfigurationTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'AuroraServerlessScalingConfigurationTimeoutMinutesInteger')
39
44
  CancelPlanExecutionRequest = Shapes::StructureShape.new(name: 'CancelPlanExecutionRequest')
40
45
  CancelPlanExecutionResponse = Shapes::StructureShape.new(name: 'CancelPlanExecutionResponse')
41
46
  CreatePlanRequest = Shapes::StructureShape.new(name: 'CreatePlanRequest')
@@ -150,6 +155,13 @@ module Aws::ARCRegionswitch
150
155
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
151
156
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
152
157
  MinimalWorkflow = Shapes::StructureShape.new(name: 'MinimalWorkflow')
158
+ NeptuneClusterArn = Shapes::StringShape.new(name: 'NeptuneClusterArn')
159
+ NeptuneDefaultBehavior = Shapes::StringShape.new(name: 'NeptuneDefaultBehavior')
160
+ NeptuneGlobalClusterIdentifier = Shapes::StringShape.new(name: 'NeptuneGlobalClusterIdentifier')
161
+ NeptuneGlobalDatabaseConfiguration = Shapes::StructureShape.new(name: 'NeptuneGlobalDatabaseConfiguration')
162
+ NeptuneGlobalDatabaseConfigurationTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'NeptuneGlobalDatabaseConfigurationTimeoutMinutesInteger')
163
+ NeptuneUngraceful = Shapes::StructureShape.new(name: 'NeptuneUngraceful')
164
+ NeptuneUngracefulBehavior = Shapes::StringShape.new(name: 'NeptuneUngracefulBehavior')
153
165
  NextToken = Shapes::StringShape.new(name: 'NextToken')
154
166
  ParallelExecutionBlockConfiguration = Shapes::StructureShape.new(name: 'ParallelExecutionBlockConfiguration')
155
167
  Plan = Shapes::StructureShape.new(name: 'Plan')
@@ -168,8 +180,11 @@ module Aws::ARCRegionswitch
168
180
  RecoveryExecutionId = Shapes::StringShape.new(name: 'RecoveryExecutionId')
169
181
  Region = Shapes::StringShape.new(name: 'Region')
170
182
  RegionAndRoutingControls = Shapes::MapShape.new(name: 'RegionAndRoutingControls')
183
+ RegionAuroraClusterMap = Shapes::MapShape.new(name: 'RegionAuroraClusterMap')
184
+ RegionAuroraInstanceArnMap = Shapes::MapShape.new(name: 'RegionAuroraInstanceArnMap')
171
185
  RegionEventSourceMappingMap = Shapes::MapShape.new(name: 'RegionEventSourceMappingMap')
172
186
  RegionList = Shapes::ListShape.new(name: 'RegionList')
187
+ RegionNeptuneClusterArnMap = Shapes::MapShape.new(name: 'RegionNeptuneClusterArnMap')
173
188
  RegionSwitchPlanConfiguration = Shapes::StructureShape.new(name: 'RegionSwitchPlanConfiguration')
174
189
  RegionToRunIn = Shapes::StringShape.new(name: 'RegionToRunIn')
175
190
  RegionalScalingResource = Shapes::MapShape.new(name: 'RegionalScalingResource')
@@ -309,6 +324,22 @@ module Aws::ARCRegionswitch
309
324
 
310
325
  AuroraClusterArns.member = Shapes::ShapeRef.new(shape: AuroraClusterArn)
311
326
 
327
+ AuroraProvisionedScalingConfiguration.add_member(:timeout_minutes, Shapes::ShapeRef.new(shape: AuroraProvisionedScalingConfigurationTimeoutMinutesInteger, location_name: "timeoutMinutes"))
328
+ AuroraProvisionedScalingConfiguration.add_member(:cross_account_role, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "crossAccountRole"))
329
+ AuroraProvisionedScalingConfiguration.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "externalId"))
330
+ AuroraProvisionedScalingConfiguration.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, required: true, location_name: "globalClusterIdentifier"))
331
+ AuroraProvisionedScalingConfiguration.add_member(:region_database_cluster_arns, Shapes::ShapeRef.new(shape: RegionAuroraClusterMap, required: true, location_name: "regionDatabaseClusterArns"))
332
+ AuroraProvisionedScalingConfiguration.add_member(:instance_arns, Shapes::ShapeRef.new(shape: RegionAuroraInstanceArnMap, required: true, location_name: "instanceArns"))
333
+ AuroraProvisionedScalingConfiguration.struct_class = Types::AuroraProvisionedScalingConfiguration
334
+
335
+ AuroraServerlessScalingConfiguration.add_member(:timeout_minutes, Shapes::ShapeRef.new(shape: AuroraServerlessScalingConfigurationTimeoutMinutesInteger, location_name: "timeoutMinutes"))
336
+ AuroraServerlessScalingConfiguration.add_member(:cross_account_role, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "crossAccountRole"))
337
+ AuroraServerlessScalingConfiguration.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "externalId"))
338
+ AuroraServerlessScalingConfiguration.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, required: true, location_name: "globalClusterIdentifier"))
339
+ AuroraServerlessScalingConfiguration.add_member(:region_database_cluster_arns, Shapes::ShapeRef.new(shape: RegionAuroraClusterMap, required: true, location_name: "regionDatabaseClusterArns"))
340
+ AuroraServerlessScalingConfiguration.add_member(:target_percent, Shapes::ShapeRef.new(shape: Integer, location_name: "targetPercent"))
341
+ AuroraServerlessScalingConfiguration.struct_class = Types::AuroraServerlessScalingConfiguration
342
+
312
343
  CancelPlanExecutionRequest.add_member(:plan_arn, Shapes::ShapeRef.new(shape: PlanArn, required: true, location_name: "planArn"))
313
344
  CancelPlanExecutionRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: ExecutionId, required: true, location_name: "executionId"))
314
345
  CancelPlanExecutionRequest.add_member(:comment, Shapes::ShapeRef.new(shape: ExecutionComment, location_name: "comment"))
@@ -421,6 +452,9 @@ module Aws::ARCRegionswitch
421
452
  ExecutionBlockConfiguration.add_member(:rds_promote_read_replica_config, Shapes::ShapeRef.new(shape: RdsPromoteReadReplicaConfiguration, location_name: "rdsPromoteReadReplicaConfig"))
422
453
  ExecutionBlockConfiguration.add_member(:rds_create_cross_region_read_replica_config, Shapes::ShapeRef.new(shape: RdsCreateCrossRegionReplicaConfiguration, location_name: "rdsCreateCrossRegionReadReplicaConfig"))
423
454
  ExecutionBlockConfiguration.add_member(:lambda_event_source_mapping_config, Shapes::ShapeRef.new(shape: LambdaEventSourceMappingConfiguration, location_name: "lambdaEventSourceMappingConfig"))
455
+ ExecutionBlockConfiguration.add_member(:aurora_serverless_scaling_config, Shapes::ShapeRef.new(shape: AuroraServerlessScalingConfiguration, location_name: "auroraServerlessScalingConfig"))
456
+ ExecutionBlockConfiguration.add_member(:aurora_provisioned_scaling_config, Shapes::ShapeRef.new(shape: AuroraProvisionedScalingConfiguration, location_name: "auroraProvisionedScalingConfig"))
457
+ ExecutionBlockConfiguration.add_member(:neptune_global_database_config, Shapes::ShapeRef.new(shape: NeptuneGlobalDatabaseConfiguration, location_name: "neptuneGlobalDatabaseConfig"))
424
458
  ExecutionBlockConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
425
459
  ExecutionBlockConfiguration.add_member_subclass(:custom_action_lambda_config, Types::ExecutionBlockConfiguration::CustomActionLambdaConfig)
426
460
  ExecutionBlockConfiguration.add_member_subclass(:ec2_asg_capacity_increase_config, Types::ExecutionBlockConfiguration::Ec2AsgCapacityIncreaseConfig)
@@ -436,6 +470,9 @@ module Aws::ARCRegionswitch
436
470
  ExecutionBlockConfiguration.add_member_subclass(:rds_promote_read_replica_config, Types::ExecutionBlockConfiguration::RdsPromoteReadReplicaConfig)
437
471
  ExecutionBlockConfiguration.add_member_subclass(:rds_create_cross_region_read_replica_config, Types::ExecutionBlockConfiguration::RdsCreateCrossRegionReadReplicaConfig)
438
472
  ExecutionBlockConfiguration.add_member_subclass(:lambda_event_source_mapping_config, Types::ExecutionBlockConfiguration::LambdaEventSourceMappingConfig)
473
+ ExecutionBlockConfiguration.add_member_subclass(:aurora_serverless_scaling_config, Types::ExecutionBlockConfiguration::AuroraServerlessScalingConfig)
474
+ ExecutionBlockConfiguration.add_member_subclass(:aurora_provisioned_scaling_config, Types::ExecutionBlockConfiguration::AuroraProvisionedScalingConfig)
475
+ ExecutionBlockConfiguration.add_member_subclass(:neptune_global_database_config, Types::ExecutionBlockConfiguration::NeptuneGlobalDatabaseConfig)
439
476
  ExecutionBlockConfiguration.add_member_subclass(:unknown, Types::ExecutionBlockConfiguration::Unknown)
440
477
  ExecutionBlockConfiguration.struct_class = Types::ExecutionBlockConfiguration
441
478
 
@@ -636,6 +673,18 @@ module Aws::ARCRegionswitch
636
673
  MinimalWorkflow.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
637
674
  MinimalWorkflow.struct_class = Types::MinimalWorkflow
638
675
 
676
+ NeptuneGlobalDatabaseConfiguration.add_member(:timeout_minutes, Shapes::ShapeRef.new(shape: NeptuneGlobalDatabaseConfigurationTimeoutMinutesInteger, location_name: "timeoutMinutes"))
677
+ NeptuneGlobalDatabaseConfiguration.add_member(:cross_account_role, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "crossAccountRole"))
678
+ NeptuneGlobalDatabaseConfiguration.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "externalId"))
679
+ NeptuneGlobalDatabaseConfiguration.add_member(:behavior, Shapes::ShapeRef.new(shape: NeptuneDefaultBehavior, required: true, location_name: "behavior"))
680
+ NeptuneGlobalDatabaseConfiguration.add_member(:ungraceful, Shapes::ShapeRef.new(shape: NeptuneUngraceful, location_name: "ungraceful"))
681
+ NeptuneGlobalDatabaseConfiguration.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: NeptuneGlobalClusterIdentifier, required: true, location_name: "globalClusterIdentifier"))
682
+ NeptuneGlobalDatabaseConfiguration.add_member(:region_database_cluster_arns, Shapes::ShapeRef.new(shape: RegionNeptuneClusterArnMap, required: true, location_name: "regionDatabaseClusterArns"))
683
+ NeptuneGlobalDatabaseConfiguration.struct_class = Types::NeptuneGlobalDatabaseConfiguration
684
+
685
+ NeptuneUngraceful.add_member(:ungraceful, Shapes::ShapeRef.new(shape: NeptuneUngracefulBehavior, location_name: "ungraceful"))
686
+ NeptuneUngraceful.struct_class = Types::NeptuneUngraceful
687
+
639
688
  ParallelExecutionBlockConfiguration.add_member(:steps, Shapes::ShapeRef.new(shape: Steps, required: true, location_name: "steps"))
640
689
  ParallelExecutionBlockConfiguration.struct_class = Types::ParallelExecutionBlockConfiguration
641
690
 
@@ -678,11 +727,20 @@ module Aws::ARCRegionswitch
678
727
  RegionAndRoutingControls.key = Shapes::ShapeRef.new(shape: String)
679
728
  RegionAndRoutingControls.value = Shapes::ShapeRef.new(shape: ArcRoutingControlStates)
680
729
 
730
+ RegionAuroraClusterMap.key = Shapes::ShapeRef.new(shape: Region)
731
+ RegionAuroraClusterMap.value = Shapes::ShapeRef.new(shape: AuroraClusterArn)
732
+
733
+ RegionAuroraInstanceArnMap.key = Shapes::ShapeRef.new(shape: Region)
734
+ RegionAuroraInstanceArnMap.value = Shapes::ShapeRef.new(shape: AuroraInstanceArn)
735
+
681
736
  RegionEventSourceMappingMap.key = Shapes::ShapeRef.new(shape: Region)
682
737
  RegionEventSourceMappingMap.value = Shapes::ShapeRef.new(shape: EventSourceMapping)
683
738
 
684
739
  RegionList.member = Shapes::ShapeRef.new(shape: Region)
685
740
 
741
+ RegionNeptuneClusterArnMap.key = Shapes::ShapeRef.new(shape: Region)
742
+ RegionNeptuneClusterArnMap.value = Shapes::ShapeRef.new(shape: NeptuneClusterArn)
743
+
686
744
  RegionSwitchPlanConfiguration.add_member(:cross_account_role, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "crossAccountRole"))
687
745
  RegionSwitchPlanConfiguration.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "externalId"))
688
746
  RegionSwitchPlanConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: PlanArn, required: true, location_name: "arn"))
@@ -1044,6 +1102,7 @@ module Aws::ARCRegionswitch
1044
1102
  o.output = Shapes::ShapeRef.new(shape: ListRoute53HealthChecksResponse)
1045
1103
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1046
1104
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1105
+ o.errors << Shapes::ShapeRef.new(shape: IllegalArgumentException)
1047
1106
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1048
1107
  o[:pager] = Aws::Pager.new(
1049
1108
  limit_key: "max_results",
@@ -323,6 +323,89 @@ module Aws::ARCRegionswitch
323
323
  include Aws::Structure
324
324
  end
325
325
 
326
+ # Configuration for Amazon Aurora provisioned cluster scaling used in a
327
+ # Region switch plan.
328
+ #
329
+ # @!attribute [rw] timeout_minutes
330
+ # The timeout value specified for the configuration.
331
+ # @return [Integer]
332
+ #
333
+ # @!attribute [rw] cross_account_role
334
+ # The cross account role for the configuration.
335
+ # @return [String]
336
+ #
337
+ # @!attribute [rw] external_id
338
+ # The external ID (secret key) for the configuration.
339
+ # @return [String]
340
+ #
341
+ # @!attribute [rw] global_cluster_identifier
342
+ # The global cluster identifier for a global database.
343
+ # @return [String]
344
+ #
345
+ # @!attribute [rw] region_database_cluster_arns
346
+ # Per-Region configuration that maps each Region to the Aurora
347
+ # database cluster ARN for scaling.
348
+ # @return [Hash<String,String>]
349
+ #
350
+ # @!attribute [rw] instance_arns
351
+ # Per-Region configuration that maps each Region to the Aurora
352
+ # database instance ARN for scaling.
353
+ # @return [Hash<String,String>]
354
+ #
355
+ # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/AuroraProvisionedScalingConfiguration AWS API Documentation
356
+ #
357
+ class AuroraProvisionedScalingConfiguration < Struct.new(
358
+ :timeout_minutes,
359
+ :cross_account_role,
360
+ :external_id,
361
+ :global_cluster_identifier,
362
+ :region_database_cluster_arns,
363
+ :instance_arns)
364
+ SENSITIVE = []
365
+ include Aws::Structure
366
+ end
367
+
368
+ # Configuration for Amazon Aurora Serverless scaling used in a Region
369
+ # switch plan.
370
+ #
371
+ # @!attribute [rw] timeout_minutes
372
+ # The timeout value specified for the configuration.
373
+ # @return [Integer]
374
+ #
375
+ # @!attribute [rw] cross_account_role
376
+ # The cross account role for the configuration.
377
+ # @return [String]
378
+ #
379
+ # @!attribute [rw] external_id
380
+ # The external ID (secret key) for the configuration.
381
+ # @return [String]
382
+ #
383
+ # @!attribute [rw] global_cluster_identifier
384
+ # The global cluster identifier for a global database.
385
+ # @return [String]
386
+ #
387
+ # @!attribute [rw] region_database_cluster_arns
388
+ # Per-Region configuration that maps each Region to the Aurora
389
+ # database cluster ARN for scaling.
390
+ # @return [Hash<String,String>]
391
+ #
392
+ # @!attribute [rw] target_percent
393
+ # The target capacity percentage for Aurora Serverless scaling.
394
+ # @return [Integer]
395
+ #
396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/AuroraServerlessScalingConfiguration AWS API Documentation
397
+ #
398
+ class AuroraServerlessScalingConfiguration < Struct.new(
399
+ :timeout_minutes,
400
+ :cross_account_role,
401
+ :external_id,
402
+ :global_cluster_identifier,
403
+ :region_database_cluster_arns,
404
+ :target_percent)
405
+ SENSITIVE = []
406
+ include Aws::Structure
407
+ end
408
+
326
409
  # @!attribute [rw] plan_arn
327
410
  # The Amazon Resource Name (ARN) of the plan.
328
411
  # @return [String]
@@ -851,6 +934,18 @@ module Aws::ARCRegionswitch
851
934
  # A Lambda event source mapping execution block.
852
935
  # @return [Types::LambdaEventSourceMappingConfiguration]
853
936
  #
937
+ # @!attribute [rw] aurora_serverless_scaling_config
938
+ # An Aurora Serverless scaling execution block.
939
+ # @return [Types::AuroraServerlessScalingConfiguration]
940
+ #
941
+ # @!attribute [rw] aurora_provisioned_scaling_config
942
+ # An Aurora provisioned cluster scaling execution block.
943
+ # @return [Types::AuroraProvisionedScalingConfiguration]
944
+ #
945
+ # @!attribute [rw] neptune_global_database_config
946
+ # A Neptune global database execution block.
947
+ # @return [Types::NeptuneGlobalDatabaseConfiguration]
948
+ #
854
949
  # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/ExecutionBlockConfiguration AWS API Documentation
855
950
  #
856
951
  class ExecutionBlockConfiguration < Struct.new(
@@ -868,6 +963,9 @@ module Aws::ARCRegionswitch
868
963
  :rds_promote_read_replica_config,
869
964
  :rds_create_cross_region_read_replica_config,
870
965
  :lambda_event_source_mapping_config,
966
+ :aurora_serverless_scaling_config,
967
+ :aurora_provisioned_scaling_config,
968
+ :neptune_global_database_config,
871
969
  :unknown)
872
970
  SENSITIVE = []
873
971
  include Aws::Structure
@@ -887,6 +985,9 @@ module Aws::ARCRegionswitch
887
985
  class RdsPromoteReadReplicaConfig < ExecutionBlockConfiguration; end
888
986
  class RdsCreateCrossRegionReadReplicaConfig < ExecutionBlockConfiguration; end
889
987
  class LambdaEventSourceMappingConfig < ExecutionBlockConfiguration; end
988
+ class AuroraServerlessScalingConfig < ExecutionBlockConfiguration; end
989
+ class AuroraProvisionedScalingConfig < ExecutionBlockConfiguration; end
990
+ class NeptuneGlobalDatabaseConfig < ExecutionBlockConfiguration; end
890
991
  class Unknown < ExecutionBlockConfiguration; end
891
992
  end
892
993
 
@@ -1688,7 +1789,7 @@ module Aws::ARCRegionswitch
1688
1789
  # @return [String]
1689
1790
  #
1690
1791
  # @!attribute [rw] max_results
1691
- # The number of objects that you want to return with this call.
1792
+ # The maximum number of results to return in the response.
1692
1793
  # @return [Integer]
1693
1794
  #
1694
1795
  # @!attribute [rw] next_token
@@ -1716,11 +1817,9 @@ module Aws::ARCRegionswitch
1716
1817
  # @return [Array<Types::Route53HealthCheck>]
1717
1818
  #
1718
1819
  # @!attribute [rw] next_token
1719
- # Specifies that you want to receive the next page of results. Valid
1720
- # only if you received a `nextToken` response in the previous request.
1721
- # If you did, it indicates that more output is available. Set this
1722
- # parameter to the value provided by the previous call's `nextToken`
1723
- # response to request the next page of results.
1820
+ # A pagination token. A response may contain no results while still
1821
+ # including a `nextToken`. Continue paginating until `nextToken` is
1822
+ # null to retrieve all results.
1724
1823
  # @return [String]
1725
1824
  #
1726
1825
  # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/ListRoute53HealthChecksInRegionResponse AWS API Documentation
@@ -1746,7 +1845,7 @@ module Aws::ARCRegionswitch
1746
1845
  # @return [String]
1747
1846
  #
1748
1847
  # @!attribute [rw] max_results
1749
- # The number of objects that you want to return with this call.
1848
+ # The maximum number of results to return in the response.
1750
1849
  # @return [Integer]
1751
1850
  #
1752
1851
  # @!attribute [rw] next_token
@@ -1774,11 +1873,9 @@ module Aws::ARCRegionswitch
1774
1873
  # @return [Array<Types::Route53HealthCheck>]
1775
1874
  #
1776
1875
  # @!attribute [rw] next_token
1777
- # Specifies that you want to receive the next page of results. Valid
1778
- # only if you received a `nextToken` response in the previous request.
1779
- # If you did, it indicates that more output is available. Set this
1780
- # parameter to the value provided by the previous call's `nextToken`
1781
- # response to request the next page of results.
1876
+ # A pagination token. A response may contain no results while still
1877
+ # including a `nextToken`. Continue paginating until `nextToken` is
1878
+ # null to retrieve all results.
1782
1879
  # @return [String]
1783
1880
  #
1784
1881
  # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/ListRoute53HealthChecksResponse AWS API Documentation
@@ -1834,6 +1931,68 @@ module Aws::ARCRegionswitch
1834
1931
  include Aws::Structure
1835
1932
  end
1836
1933
 
1934
+ # Configuration for Amazon Neptune global databases used in a Region
1935
+ # switch plan.
1936
+ #
1937
+ # @!attribute [rw] timeout_minutes
1938
+ # The timeout value specified for the configuration.
1939
+ # @return [Integer]
1940
+ #
1941
+ # @!attribute [rw] cross_account_role
1942
+ # The cross account role for the configuration.
1943
+ # @return [String]
1944
+ #
1945
+ # @!attribute [rw] external_id
1946
+ # The external ID (secret key) for the configuration.
1947
+ # @return [String]
1948
+ #
1949
+ # @!attribute [rw] behavior
1950
+ # The behavior for a global database, that is, only allow switchover
1951
+ # or also allow failover.
1952
+ # @return [String]
1953
+ #
1954
+ # @!attribute [rw] ungraceful
1955
+ # The settings for ungraceful execution.
1956
+ # @return [Types::NeptuneUngraceful]
1957
+ #
1958
+ # @!attribute [rw] global_cluster_identifier
1959
+ # The global cluster identifier for a Neptune global database.
1960
+ # @return [String]
1961
+ #
1962
+ # @!attribute [rw] region_database_cluster_arns
1963
+ # The database cluster Amazon Resource Names (ARNs) for a Neptune
1964
+ # global database.
1965
+ # @return [Hash<String,String>]
1966
+ #
1967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/NeptuneGlobalDatabaseConfiguration AWS API Documentation
1968
+ #
1969
+ class NeptuneGlobalDatabaseConfiguration < Struct.new(
1970
+ :timeout_minutes,
1971
+ :cross_account_role,
1972
+ :external_id,
1973
+ :behavior,
1974
+ :ungraceful,
1975
+ :global_cluster_identifier,
1976
+ :region_database_cluster_arns)
1977
+ SENSITIVE = []
1978
+ include Aws::Structure
1979
+ end
1980
+
1981
+ # Configuration for handling failures when performing operations on
1982
+ # Neptune global databases.
1983
+ #
1984
+ # @!attribute [rw] ungraceful
1985
+ # The settings for ungraceful execution.
1986
+ # @return [String]
1987
+ #
1988
+ # @see http://docs.aws.amazon.com/goto/WebAPI/arc-region-switch-2022-07-26/NeptuneUngraceful AWS API Documentation
1989
+ #
1990
+ class NeptuneUngraceful < Struct.new(
1991
+ :ungraceful)
1992
+ SENSITIVE = []
1993
+ include Aws::Structure
1994
+ end
1995
+
1837
1996
  # Configuration for steps that should be executed in parallel during a
1838
1997
  # Region switch.
1839
1998
  #
@@ -55,7 +55,7 @@ module Aws::ARCRegionswitch
55
55
  autoload :EndpointProvider, 'aws-sdk-arcregionswitch/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-arcregionswitch/endpoints'
57
57
 
58
- GEM_VERSION = '1.18.0'
58
+ GEM_VERSION = '1.19.0'
59
59
 
60
60
  end
61
61
 
data/sig/params.rbs CHANGED
@@ -144,6 +144,36 @@ module Aws
144
144
  }?
145
145
  }
146
146
 
147
+ type aurora_serverless_scaling_configuration = {
148
+ timeout_minutes: ::Integer?,
149
+ cross_account_role: ::String?,
150
+ external_id: ::String?,
151
+ global_cluster_identifier: ::String,
152
+ region_database_cluster_arns: Hash[::String, ::String],
153
+ target_percent: ::Integer?
154
+ }
155
+
156
+ type aurora_provisioned_scaling_configuration = {
157
+ timeout_minutes: ::Integer?,
158
+ cross_account_role: ::String?,
159
+ external_id: ::String?,
160
+ global_cluster_identifier: ::String,
161
+ region_database_cluster_arns: Hash[::String, ::String],
162
+ instance_arns: Hash[::String, ::String]
163
+ }
164
+
165
+ type neptune_global_database_configuration = {
166
+ timeout_minutes: ::Integer?,
167
+ cross_account_role: ::String?,
168
+ external_id: ::String?,
169
+ behavior: ("switchoverOnly" | "failover"),
170
+ ungraceful: {
171
+ ungraceful: ("failover")?
172
+ }?,
173
+ global_cluster_identifier: ::String,
174
+ region_database_cluster_arns: Hash[::String, ::String]
175
+ }
176
+
147
177
  type execution_block_configuration = {
148
178
  custom_action_lambda_config: Params::custom_action_lambda_configuration?,
149
179
  ec2_asg_capacity_increase_config: Params::ec2_asg_capacity_increase_configuration?,
@@ -189,14 +219,17 @@ module Aws
189
219
  external_id: ::String?,
190
220
  db_instance_arn_map: Hash[::String, ::String]
191
221
  }?,
192
- lambda_event_source_mapping_config: Params::lambda_event_source_mapping_configuration?
222
+ lambda_event_source_mapping_config: Params::lambda_event_source_mapping_configuration?,
223
+ aurora_serverless_scaling_config: Params::aurora_serverless_scaling_configuration?,
224
+ aurora_provisioned_scaling_config: Params::aurora_provisioned_scaling_configuration?,
225
+ neptune_global_database_config: Params::neptune_global_database_configuration?
193
226
  }
194
227
 
195
228
  type step = {
196
229
  name: ::String,
197
230
  description: ::String?,
198
231
  execution_block_configuration: Params::execution_block_configuration,
199
- execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping")
232
+ execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping" | "AuroraServerlessScaling" | "AuroraProvisionedScaling" | "NeptuneGlobalDatabase")
200
233
  }
201
234
 
202
235
  type trigger = {
data/sig/types.rbs CHANGED
@@ -87,6 +87,26 @@ module Aws::ARCRegionswitch
87
87
  SENSITIVE: []
88
88
  end
89
89
 
90
+ class AuroraProvisionedScalingConfiguration
91
+ attr_accessor timeout_minutes: ::Integer
92
+ attr_accessor cross_account_role: ::String
93
+ attr_accessor external_id: ::String
94
+ attr_accessor global_cluster_identifier: ::String
95
+ attr_accessor region_database_cluster_arns: ::Hash[::String, ::String]
96
+ attr_accessor instance_arns: ::Hash[::String, ::String]
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class AuroraServerlessScalingConfiguration
101
+ attr_accessor timeout_minutes: ::Integer
102
+ attr_accessor cross_account_role: ::String
103
+ attr_accessor external_id: ::String
104
+ attr_accessor global_cluster_identifier: ::String
105
+ attr_accessor region_database_cluster_arns: ::Hash[::String, ::String]
106
+ attr_accessor target_percent: ::Integer
107
+ SENSITIVE: []
108
+ end
109
+
90
110
  class CancelPlanExecutionRequest
91
111
  attr_accessor plan_arn: ::String
92
112
  attr_accessor execution_id: ::String
@@ -230,6 +250,9 @@ module Aws::ARCRegionswitch
230
250
  attr_accessor rds_promote_read_replica_config: Types::RdsPromoteReadReplicaConfiguration
231
251
  attr_accessor rds_create_cross_region_read_replica_config: Types::RdsCreateCrossRegionReplicaConfiguration
232
252
  attr_accessor lambda_event_source_mapping_config: Types::LambdaEventSourceMappingConfiguration
253
+ attr_accessor aurora_serverless_scaling_config: Types::AuroraServerlessScalingConfiguration
254
+ attr_accessor aurora_provisioned_scaling_config: Types::AuroraProvisionedScalingConfiguration
255
+ attr_accessor neptune_global_database_config: Types::NeptuneGlobalDatabaseConfiguration
233
256
  attr_accessor unknown: untyped
234
257
  SENSITIVE: []
235
258
 
@@ -261,6 +284,12 @@ module Aws::ARCRegionswitch
261
284
  end
262
285
  class LambdaEventSourceMappingConfig < ExecutionBlockConfiguration
263
286
  end
287
+ class AuroraServerlessScalingConfig < ExecutionBlockConfiguration
288
+ end
289
+ class AuroraProvisionedScalingConfig < ExecutionBlockConfiguration
290
+ end
291
+ class NeptuneGlobalDatabaseConfig < ExecutionBlockConfiguration
292
+ end
264
293
  class Unknown < ExecutionBlockConfiguration
265
294
  end
266
295
  end
@@ -269,7 +298,7 @@ module Aws::ARCRegionswitch
269
298
  attr_accessor timestamp: ::Time
270
299
  attr_accessor type: ("unknown" | "executionPending" | "executionStarted" | "executionSucceeded" | "executionFailed" | "executionPausing" | "executionPaused" | "executionCanceling" | "executionCanceled" | "executionPendingApproval" | "executionBehaviorChangedToUngraceful" | "executionBehaviorChangedToGraceful" | "executionPendingChildPlanManualApproval" | "executionSuccessMonitoringApplicationHealth" | "stepStarted" | "stepUpdate" | "stepSucceeded" | "stepFailed" | "stepSkipped" | "stepPausedByError" | "stepPausedByOperator" | "stepCanceled" | "stepPendingApproval" | "stepExecutionBehaviorChangedToUngraceful" | "stepPendingApplicationHealthMonitor" | "planEvaluationWarning")
271
300
  attr_accessor step_name: ::String
272
- attr_accessor execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping")
301
+ attr_accessor execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping" | "AuroraServerlessScaling" | "AuroraProvisionedScaling" | "NeptuneGlobalDatabase")
273
302
  attr_accessor resources: ::Array[::String]
274
303
  attr_accessor error: ::String
275
304
  attr_accessor description: ::String
@@ -525,6 +554,22 @@ module Aws::ARCRegionswitch
525
554
  SENSITIVE: []
526
555
  end
527
556
 
557
+ class NeptuneGlobalDatabaseConfiguration
558
+ attr_accessor timeout_minutes: ::Integer
559
+ attr_accessor cross_account_role: ::String
560
+ attr_accessor external_id: ::String
561
+ attr_accessor behavior: ("switchoverOnly" | "failover")
562
+ attr_accessor ungraceful: Types::NeptuneUngraceful
563
+ attr_accessor global_cluster_identifier: ::String
564
+ attr_accessor region_database_cluster_arns: ::Hash[::String, ::String]
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class NeptuneUngraceful
569
+ attr_accessor ungraceful: ("failover")
570
+ SENSITIVE: []
571
+ end
572
+
528
573
  class ParallelExecutionBlockConfiguration
529
574
  attr_accessor steps: ::Array[Types::Step]
530
575
  SENSITIVE: []
@@ -686,7 +731,7 @@ module Aws::ARCRegionswitch
686
731
  attr_accessor name: ::String
687
732
  attr_accessor description: ::String
688
733
  attr_accessor execution_block_configuration: Types::ExecutionBlockConfiguration
689
- attr_accessor execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping")
734
+ attr_accessor execution_block_type: ("CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb" | "RdsPromoteReadReplica" | "RdsCreateCrossRegionReplica" | "LambdaEventSourceMapping" | "AuroraServerlessScaling" | "AuroraProvisionedScaling" | "NeptuneGlobalDatabase")
690
735
  SENSITIVE: []
691
736
  end
692
737
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-arcregionswitch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services