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

.NET
Go
Java
Python
TypeScript