Interface CfnPlanPropsMixin.NeptuneGlobalDatabaseConfigurationProperty

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

@Stability(Stable) public static interface CfnPlanPropsMixin.NeptuneGlobalDatabaseConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 NeptuneGlobalDatabaseConfigurationProperty neptuneGlobalDatabaseConfigurationProperty = NeptuneGlobalDatabaseConfigurationProperty.builder()
         .behavior("behavior")
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .globalClusterIdentifier("globalClusterIdentifier")
         .regionDatabaseClusterArns(Map.of(
                 "regionDatabaseClusterArnsKey", "regionDatabaseClusterArns"))
         .timeoutMinutes(123)
         .ungraceful(NeptuneUngracefulProperty.builder()
                 .ungraceful("ungraceful")
                 .build())
         .build();
 

See Also: