CfnReplicationSubnetGroupMixinProps

class aws_cdk.mixins_preview.aws_dms.mixins.CfnReplicationSubnetGroupMixinProps(*, replication_subnet_group_description=None, replication_subnet_group_identifier=None, subnet_ids=None, tags=None)

Bases: object

Properties for CfnReplicationSubnetGroupPropsMixin.

Parameters:
  • replication_subnet_group_description (Optional[str]) – The description for the subnet group.

  • replication_subnet_group_identifier (Optional[str]) – The identifier for the replication subnet group. If you don’t specify a name, CloudFormation generates a unique ID and uses that ID for the identifier.

  • subnet_ids (Optional[Sequence[str]]) – One or more subnet IDs to be assigned to the subnet group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – One or more tags to be assigned to the subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_dms import mixins as dms_mixins

cfn_replication_subnet_group_mixin_props = dms_mixins.CfnReplicationSubnetGroupMixinProps(
    replication_subnet_group_description="replicationSubnetGroupDescription",
    replication_subnet_group_identifier="replicationSubnetGroupIdentifier",
    subnet_ids=["subnetIds"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

replication_subnet_group_description

The description for the subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription

replication_subnet_group_identifier

The identifier for the replication subnet group.

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier

subnet_ids

One or more subnet IDs to be assigned to the subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-subnetids

tags

One or more tags to be assigned to the subnet group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-tags