Interface CfnReplicationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:15.693Z")
@Stability(Stable)
public interface CfnReplicationSetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReplicationSet.
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.*;
CfnReplicationSetProps cfnReplicationSetProps = CfnReplicationSetProps.builder()
.regions(List.of(ReplicationRegionProperty.builder()
.regionConfiguration(RegionConfigurationProperty.builder()
.sseKmsKeyId("sseKmsKeyId")
.build())
.regionName("regionName")
.build()))
// the properties below are optional
.deletionProtected(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicationSetPropsstatic final classAn implementation forCfnReplicationSetProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegions
Specifies the Regions of the replication set.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnReplicationSet.ReplicationRegionProperty>- See Also:
-
getDeletionProtected
Determines if the replication set deletion protection is enabled or not.If deletion protection is enabled, you can't delete the last Region in the replication set.
Returns union: either
BooleanorIResolvable- See Also:
-
getTags
A list of tags to add to the replication set.- See Also:
-
builder
- Returns:
- a
CfnReplicationSetProps.BuilderofCfnReplicationSetProps
-