interface CfnClusterSubnetGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnClusterSubnetGroupProps |
Java | software.amazon.awscdk.services.redshift.CfnClusterSubnetGroupProps |
Python | aws_cdk.aws_redshift.CfnClusterSubnetGroupProps |
TypeScript | @aws-cdk/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 * as redshift from '@aws-cdk/aws-redshift';
const cfnClusterSubnetGroupProps: redshift.CfnClusterSubnetGroupProps = {
description: 'description',
subnetIds: ['subnetIds'],
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
description | string | A description for the subnet group. |
subnet | string[] | An array of VPC subnet IDs. |
tags? | Cfn [] | 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:
Cfn
[]
(optional)
Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.
Use tags to manage your resources.