Interface CfnReplicationSetPropsMixin.ReplicationRegionProperty

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

@Stability(Stable) public static interface CfnReplicationSetPropsMixin.ReplicationRegionProperty extends software.amazon.jsii.JsiiSerializable
The ReplicationRegion property type specifies the Region and AWS Key Management Service key to add to the replication set.

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.ssmincidents.*;
 ReplicationRegionProperty replicationRegionProperty = ReplicationRegionProperty.builder()
         .regionConfiguration(RegionConfigurationProperty.builder()
                 .sseKmsKeyId("sseKmsKeyId")
                 .build())
         .regionName("regionName")
         .build();
 

See Also: