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