interface CfnClusterSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnClusterSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnClusterSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnClusterSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnClusterSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnClusterSubnetGroupMixinProps |
Properties for CfnClusterSubnetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const cfnClusterSubnetGroupMixinProps: redshift_mixins.CfnClusterSubnetGroupMixinProps = {
description: 'description',
subnetIds: ['subnetIds'],
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
(optional)
A description for the subnet group.
subnetIds?
Type:
string[]
(optional)
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.

.NET
Go
Java
Python
TypeScript