Interface CfnPlanPropsMixin.DocumentDbConfigurationProperty

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

@Stability(Stable) public static interface CfnPlanPropsMixin.DocumentDbConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for Amazon DocumentDB global clusters 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.cfnpropertymixins.services.arcregionswitch.*;
 DocumentDbConfigurationProperty documentDbConfigurationProperty = DocumentDbConfigurationProperty.builder()
         .behavior("behavior")
         .crossAccountRole("crossAccountRole")
         .databaseClusterArns(List.of("databaseClusterArns"))
         .externalId("externalId")
         .globalClusterIdentifier("globalClusterIdentifier")
         .timeoutMinutes(123)
         .ungraceful(DocumentDbUngracefulProperty.builder()
                 .ungraceful("ungraceful")
                 .build())
         .build();
 

See Also: