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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicationSet.ReplicationRegionPropertystatic final classAn implementation forCfnReplicationSet.ReplicationRegionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegionConfiguration
Specifies the Region configuration.Returns union: either
IResolvableorCfnReplicationSet.RegionConfigurationProperty- See Also:
-
getRegionName
Specifies the region name to add to the replication set.- See Also:
-
builder
-