interface CfnDBSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBSubnetGroupMixinProps |
Properties for CfnDBSubnetGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnetgroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const cfnDBSubnetGroupMixinProps: rds_mixins.CfnDBSubnetGroupMixinProps = {
dbSubnetGroupDescription: 'dbSubnetGroupDescription',
dbSubnetGroupName: 'dbSubnetGroupName',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The description for the DB subnet group. |
| db | string | The name for the DB subnet group. This value is stored as a lowercase string. |
| subnet | string[] | The EC2 Subnet IDs for the DB subnet group. |
| tags? | Cfn[] | Tags to assign to the DB subnet group. |
dbSubnetGroupDescription?
Type:
string
(optional)
The description for the DB subnet group.
dbSubnetGroupName?
Type:
string
(optional)
The name for the DB subnet group. This value is stored as a lowercase string.
Constraints:
- Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens.
- Must not be default.
- First character must be a letter.
Example: mydbsubnetgroup
subnetIds?
Type:
string[]
(optional)
The EC2 Subnet IDs for the DB subnet group.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the DB subnet group.

.NET
Go
Java
Python
TypeScript