interface CfnDBSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Neptune.Mixins.CfnDBSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptune/mixins#CfnDBSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.neptune.mixins.CfnDBSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_neptune » mixins » CfnDBSubnetGroupMixinProps |
Properties for CfnDBSubnetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as neptune_mixins } from '@aws-cdk/mixins-preview/aws-neptune';
const cfnDBSubnetGroupMixinProps: neptune_mixins.CfnDBSubnetGroupMixinProps = {
dbSubnetGroupDescription: 'dbSubnetGroupDescription',
dbSubnetGroupName: 'dbSubnetGroupName',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | Provides the description of the DB subnet group. |
| db | string | The name of the DB subnet group. |
| subnet | string[] | The Amazon EC2 subnet IDs for the DB subnet group. |
| tags? | Cfn[] | The tags that you want to attach to the DB subnet group. |
dbSubnetGroupDescription?
Type:
string
(optional)
Provides the description of the DB subnet group.
dbSubnetGroupName?
Type:
string
(optional)
The name of the DB subnet group.
subnetIds?
Type:
string[]
(optional)
The Amazon EC2 subnet IDs for the DB subnet group.
tags?
Type:
Cfn[]
(optional)
The tags that you want to attach to the DB subnet group.

.NET
Go
Java
Python
TypeScript