aws-cdk-lib.aws_redshift.CfnClusterSubnetGroupProps

interface CfnClusterSubnetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Redshift.CfnClusterSubnetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnClusterSubnetGroupProps
Javasoftware.amazon.awscdk.services.redshift.CfnClusterSubnetGroupProps
Pythonaws_cdk.aws_redshift.CfnClusterSubnetGroupProps
TypeScript aws-cdk-lib » aws_redshift » CfnClusterSubnetGroupProps

Properties for defining a CfnClusterSubnetGroup.

Example

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

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

Properties

NameTypeDescription
descriptionstringA description for the subnet group.
subnetIdsstring[]An array of VPC subnet IDs.
tags?CfnTag[]Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.

description

Type: string

A description for the subnet group.


subnetIds

Type: string[]

An array of VPC subnet IDs.

A maximum of 20 subnets can be modified in a single request.


tags?

Type: CfnTag[] (optional)

Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.

Use tags to manage your resources.