aws-cdk-lib.aws_dax.CfnSubnetGroupProps

interface CfnSubnetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.DAX.CfnSubnetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdax#CfnSubnetGroupProps
Javasoftware.amazon.awscdk.services.dax.CfnSubnetGroupProps
Pythonaws_cdk.aws_dax.CfnSubnetGroupProps
TypeScript aws-cdk-lib » aws_dax » CfnSubnetGroupProps

Properties for defining a CfnSubnetGroup.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dax as dax } from 'aws-cdk-lib';
const cfnSubnetGroupProps: dax.CfnSubnetGroupProps = {
  subnetIds: ['subnetIds'],

  // the properties below are optional
  description: 'description',
  subnetGroupName: 'subnetGroupName',
};

Properties

NameTypeDescription
subnetIdsstring[]A list of VPC subnet IDs for the subnet group.
description?stringThe description of the subnet group.
subnetGroupName?stringThe name of the subnet group.

subnetIds

Type: string[]

A list of VPC subnet IDs for the subnet group.


description?

Type: string (optional)

The description of the subnet group.


subnetGroupName?

Type: string (optional)

The name of the subnet group.