Interface CfnReplicationSetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicationSetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:35.830Z") @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();
 
  • Method Details

    • getRegions

      @Stability(Stable) @NotNull Object getRegions()
      Specifies the Regions of the replication set.
    • getDeletionProtected

      @Stability(Stable) @Nullable default Object 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.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      A list of tags to add to the replication set.
    • builder

      @Stability(Stable) static CfnReplicationSetProps.Builder builder()
      Returns:
      a CfnReplicationSetProps.Builder of CfnReplicationSetProps