Interface CfnReplicationSubnetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationSubnetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:07.104Z")
@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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReplicationSubnetGroupProps
static final class
An implementation forCfnReplicationSubnetGroupProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReplicationSubnetGroupDescription
The description for the subnet group.- See Also:
-
getSubnetIds
One or more subnet IDs to be assigned to the subnet group.- See Also:
-
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.
- See Also:
-
getTags
One or more tags to be assigned to the subnet group.- See Also:
-
builder
-