Interface CfnDomain.DataStoreProperty

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

@Stability(Stable) public static interface CfnDomain.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.services.customerprofiles.*;
 DataStoreProperty dataStoreProperty = DataStoreProperty.builder()
         .enabled(false)
         .readiness(ReadinessProperty.builder()
                 .message("message")
                 .progressPercentage(123)
                 .build())
         .build();
 

See Also: