Interface CfnReplicationSet.ReplicationRegionProperty

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

@Stability(Stable) public static interface CfnReplicationSet.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.services.ssmincidents.*;
 ReplicationRegionProperty replicationRegionProperty = ReplicationRegionProperty.builder()
         .regionConfiguration(RegionConfigurationProperty.builder()
                 .sseKmsKeyId("sseKmsKeyId")
                 .build())
         .regionName("regionName")
         .build();
 

See Also: