interface CfnDBSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DocDB.CfnDBSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdocdb#CfnDBSubnetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.docdb.CfnDBSubnetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_docdb.CfnDBSubnetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_docdb » CfnDBSubnetGroupMixinProps |
Properties for CfnDBSubnetGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_docdb as docdb } from '@aws-cdk/cfn-property-mixins';
const cfnDBSubnetGroupMixinProps: docdb.CfnDBSubnetGroupMixinProps = {
dbSubnetGroupDescription: 'dbSubnetGroupDescription',
dbSubnetGroupName: 'dbSubnetGroupName',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The description for the subnet group. |
| db | string | The name for the subnet group. This value is stored as a lowercase string. |
| subnet | string[] | The Amazon EC2 subnet IDs for the subnet group. |
| tags? | Cfn[] | The tags to be assigned to the subnet group. |
dbSubnetGroupDescription?
Type:
string
(optional)
The description for the subnet group.
dbSubnetGroupName?
Type:
string
(optional)
The name for the 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.
Example: mySubnetgroup
subnetIds?
Type:
string[]
(optional)
The Amazon EC2 subnet IDs for the subnet group.
tags?
Type:
Cfn[]
(optional)
The tags to be assigned to the subnet group.

.NET
Go
Java
Python
TypeScript