ClusterParameterGroupReference

class aws_cdk.aws_redshift.ClusterParameterGroupReference(*, parameter_group_name)

Bases: object

A reference to a ClusterParameterGroup resource.

Parameters:

parameter_group_name (str) – The ParameterGroupName of the ClusterParameterGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_redshift as redshift

cluster_parameter_group_reference = redshift.ClusterParameterGroupReference(
    parameter_group_name="parameterGroupName"
)

Attributes

parameter_group_name

The ParameterGroupName of the ClusterParameterGroup resource.