Interface CfnPlan.GlobalAuroraConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPlan.GlobalAuroraConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPlan

@Stability(Stable) public static interface CfnPlan.GlobalAuroraConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for Amazon Aurora global databases used in a Region switch plan.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.arcregionswitch.*;
 GlobalAuroraConfigurationProperty globalAuroraConfigurationProperty = GlobalAuroraConfigurationProperty.builder()
         .behavior("behavior")
         .databaseClusterArns(List.of("databaseClusterArns"))
         .globalClusterIdentifier("globalClusterIdentifier")
         // the properties below are optional
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .timeoutMinutes(123)
         .ungraceful(GlobalAuroraUngracefulProperty.builder()
                 .ungraceful("ungraceful")
                 .build())
         .build();
 

See Also: