Interface CfnPlan.DocumentDbConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.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.services.arcregionswitch.*;
 DocumentDbConfigurationProperty documentDbConfigurationProperty = DocumentDbConfigurationProperty.builder()
         .behavior("behavior")
         .databaseClusterArns(List.of("databaseClusterArns"))
         .globalClusterIdentifier("globalClusterIdentifier")
         // the properties below are optional
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .timeoutMinutes(123)
         .ungraceful(DocumentDbUngracefulProperty.builder()
                 .ungraceful("ungraceful")
                 .build())
         .build();
 

See Also: