aws-cdk-lib.aws_neptune.CfnDBSubnetGroupProps

interface CfnDBSubnetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Neptune.CfnDBSubnetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsneptune#CfnDBSubnetGroupProps
Javasoftware.amazon.awscdk.services.neptune.CfnDBSubnetGroupProps
Pythonaws_cdk.aws_neptune.CfnDBSubnetGroupProps
TypeScript aws-cdk-lib » aws_neptune » CfnDBSubnetGroupProps

Properties for defining a CfnDBSubnetGroup.

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-lib';
const cfnDBSubnetGroupProps: neptune.CfnDBSubnetGroupProps = {
  dbSubnetGroupDescription: 'dbSubnetGroupDescription',
  subnetIds: ['subnetIds'],

  // the properties below are optional
  dbSubnetGroupName: 'dbSubnetGroupName',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
dbSubnetGroupDescriptionstringProvides the description of the DB subnet group.
subnetIdsstring[]The Amazon EC2 subnet IDs for the DB subnet group.
dbSubnetGroupName?stringThe name of the DB subnet group.
tags?CfnTag[]The tags that you want to attach to the DB subnet group.

dbSubnetGroupDescription

Type: string

Provides the description of the DB subnet group.


subnetIds

Type: string[]

The Amazon EC2 subnet IDs for the DB subnet group.


dbSubnetGroupName?

Type: string (optional)

The name of the DB subnet group.


tags?

Type: CfnTag[] (optional)

The tags that you want to attach to the DB subnet group.