aws-cdk-lib.aws_dms.CfnReplicationSubnetGroupProps

interface CfnReplicationSubnetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.DMS.CfnReplicationSubnetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdms#CfnReplicationSubnetGroupProps
Javasoftware.amazon.awscdk.services.dms.CfnReplicationSubnetGroupProps
Pythonaws_cdk.aws_dms.CfnReplicationSubnetGroupProps
TypeScript aws-cdk-lib » aws_dms » CfnReplicationSubnetGroupProps

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 { aws_dms as dms } from 'aws-cdk-lib';
const cfnReplicationSubnetGroupProps: dms.CfnReplicationSubnetGroupProps = {
  replicationSubnetGroupDescription: 'replicationSubnetGroupDescription',
  subnetIds: ['subnetIds'],

  // the properties below are optional
  replicationSubnetGroupIdentifier: 'replicationSubnetGroupIdentifier',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
replicationSubnetGroupDescriptionstringThe description for the subnet group.
subnetIdsstring[]One or more subnet IDs to be assigned to the subnet group.
replicationSubnetGroupIdentifier?stringThe identifier for the replication subnet group.
tags?CfnTag[]One or more tags to be assigned to the subnet group.

replicationSubnetGroupDescription

Type: string

The description for the subnet group.


subnetIds

Type: string[]

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


replicationSubnetGroupIdentifier?

Type: string (optional)

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?

Type: CfnTag[] (optional)

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