interface CfnReplicationSubnetGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DMS.CfnReplicationSubnetGroupProps |
Java | software.amazon.awscdk.services.dms.CfnReplicationSubnetGroupProps |
Python | aws_cdk.aws_dms.CfnReplicationSubnetGroupProps |
TypeScript | @aws-cdk/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 * as dms from '@aws-cdk/aws-dms';
const cfnReplicationSubnetGroupProps: dms.CfnReplicationSubnetGroupProps = {
replicationSubnetGroupDescription: 'replicationSubnetGroupDescription',
subnetIds: ['subnetIds'],
// the properties below are optional
replicationSubnetGroupIdentifier: 'replicationSubnetGroupIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
replication | string | The description for the subnet group. |
subnet | string[] | One or more subnet IDs to be assigned to the subnet group. |
replication | string | The identifier for the replication subnet group. |
tags? | Cfn [] | 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:
Cfn
[]
(optional)
One or more tags to be assigned to the subnet group.