CfnReplicationSubnetGroupProps
- class aws_cdk.aws_dms.CfnReplicationSubnetGroupProps(*, replication_subnet_group_description, subnet_ids, replication_subnet_group_identifier=None, tags=None)
Bases:
objectProperties for defining a
CfnReplicationSubnetGroup.- Parameters:
replication_subnet_group_description (
str) – The description for the subnet group.subnet_ids (
Sequence[str]) – One or more subnet IDs to be assigned to the subnet group.replication_subnet_group_identifier (
Optional[str]) – 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.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – One or more tags to be assigned to the subnet group.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_dms as dms cfn_replication_subnet_group_props = dms.CfnReplicationSubnetGroupProps( replication_subnet_group_description="replicationSubnetGroupDescription", subnet_ids=["subnetIds"], # the properties below are optional replication_subnet_group_identifier="replicationSubnetGroupIdentifier", tags=[CfnTag( key="key", value="value" )] )
Attributes
- replication_subnet_group_description
The description for the subnet group.
- replication_subnet_group_identifier
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.
- subnet_ids
One or more subnet IDs to be assigned to the subnet group.
- tags
One or more tags to be assigned to the subnet group.