interface ClusterSubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.ClusterSubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#ClusterSubnetGroupReference |
Java | software.amazon.awscdk.services.redshift.ClusterSubnetGroupReference |
Python | aws_cdk.aws_redshift.ClusterSubnetGroupReference |
TypeScript | aws-cdk-lib » aws_redshift » ClusterSubnetGroupReference |
A reference to a ClusterSubnetGroup resource.
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 clusterSubnetGroupReference: redshift.ClusterSubnetGroupReference = {
clusterSubnetGroupName: 'clusterSubnetGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ClusterSubnetGroupName of the ClusterSubnetGroup resource. |
clusterSubnetGroupName
Type:
string
The ClusterSubnetGroupName of the ClusterSubnetGroup resource.

.NET
Go
Java
Python
TypeScript