interface CfnReplicationSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnReplicationSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnReplicationSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnReplicationSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnReplicationSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » 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 { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const cfnReplicationSubnetGroupMixinProps: dms_mixins.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