interface CfnDBSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DocDB.Mixins.CfnDBSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdocdb/mixins#CfnDBSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.docdb.mixins.CfnDBSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_docdb.mixins.CfnDBSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_docdb » mixins » 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 { mixins as docdb_mixins } from '@aws-cdk/mixins-preview/aws-docdb';
const cfnDBSubnetGroupMixinProps: docdb_mixins.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