interface CfnDBSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBSubnetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBSubnetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBSubnetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » 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 { aws_rds as rds } from '@aws-cdk/cfn-property-mixins';
const cfnDBSubnetGroupMixinProps: rds.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 | ISubnet)[] | 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 | ISubnet)[]
(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