@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:23.076Z") @Stability(value=Stable) public interface CfnReplicationSetProps extends software.amazon.jsii.JsiiSerializable
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnReplicationSetProps.Builder
A builder for
CfnReplicationSetProps |
static class |
CfnReplicationSetProps.Jsii$Proxy
An implementation for
CfnReplicationSetProps |
Modifier and Type | Method and Description |
---|---|
static CfnReplicationSetProps.Builder |
builder() |
default Object |
getDeletionProtected()
Determines if the replication set deletion protection is enabled or not.
|
Object |
getRegions()
Specifies the Regions of the replication set.
|
default List<CfnTag> |
getTags()
A list of tags to add to the replication set.
|
@Stability(value=Stable) @NotNull Object getRegions()
@Stability(value=Stable) @Nullable default Object getDeletionProtected()
If deletion protection is enabled, you can't delete the last Region in the replication set.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnReplicationSetProps.Builder builder()
CfnReplicationSetProps.Builder
of CfnReplicationSetProps
Copyright © 2023. All rights reserved.