Interface CfnDomainPropsMixin.DataStoreProperty

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

@Stability(Stable) public static interface CfnDomainPropsMixin.DataStoreProperty extends software.amazon.jsii.JsiiSerializable
Configuration and status of the data store for the domain.

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.customerprofiles.*;
 DataStoreProperty dataStoreProperty = DataStoreProperty.builder()
         .enabled(false)
         .readiness(ReadinessProperty.builder()
                 .message("message")
                 .progressPercentage(123)
                 .build())
         .build();
 

See Also: