Interface CfnReplicationSubnetGroupProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:56.409Z") @Stability(Stable) public interface CfnReplicationSubnetGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnReplicationSubnetGroup.

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.dms.*;
 CfnReplicationSubnetGroupProps cfnReplicationSubnetGroupProps = CfnReplicationSubnetGroupProps.builder()
         .replicationSubnetGroupDescription("replicationSubnetGroupDescription")
         .subnetIds(List.of("subnetIds"))
         // the properties below are optional
         .replicationSubnetGroupIdentifier("replicationSubnetGroupIdentifier")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getReplicationSubnetGroupDescription

      @Stability(Stable) @NotNull String getReplicationSubnetGroupDescription()
      The description for the subnet group.
    • getSubnetIds

      @Stability(Stable) @NotNull List<String> getSubnetIds()
      One or more subnet IDs to be assigned to the subnet group.
    • getReplicationSubnetGroupIdentifier

      @Stability(Stable) @Nullable default String getReplicationSubnetGroupIdentifier()
      The identifier for the replication subnet group.

      If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the identifier.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      One or more tags to be assigned to the subnet group.
    • builder

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