interface CfnReplicationSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DMS.CfnReplicationSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdms#CfnReplicationSubnetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dms.CfnReplicationSubnetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dms.CfnReplicationSubnetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dms » CfnReplicationSubnetGroupMixinProps |
Properties for CfnReplicationSubnetGroupPropsMixin.
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/cfn-property-mixins';
const cfnReplicationSubnetGroupMixinProps: dms.CfnReplicationSubnetGroupMixinProps = {
replicationSubnetGroupDescription: 'replicationSubnetGroupDescription',
replicationSubnetGroupIdentifier: 'replicationSubnetGroupIdentifier',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The description for the subnet group. |
| replication | string | The identifier for the replication subnet group. |
| subnet | string[] | One or more subnet IDs to be assigned to the subnet group. |
| tags? | Cfn[] | One or more tags to be assigned to the subnet group. |
replicationSubnetGroupDescription?
Type:
string
(optional)
The description for the subnet group.
replicationSubnetGroupIdentifier?
Type:
string
(optional)
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.
subnetIds?
Type:
string[]
(optional)
One or more subnet IDs to be assigned to the subnet group.
tags?
Type:
Cfn[]
(optional)
One or more tags to be assigned to the subnet group.

.NET
Go
Java
Python
TypeScript