CfnClusterParameterGroupMixinProps
- class aws_cdk.mixins_preview.aws_redshift.mixins.CfnClusterParameterGroupMixinProps(*, description=None, parameter_group_family=None, parameter_group_name=None, parameters=None, tags=None)
Bases:
objectProperties for CfnClusterParameterGroupPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the parameter group.parameter_group_family (
Optional[str]) – The name of the cluster parameter group family that this cluster parameter group is compatible with. You can create a custom parameter group and then associate your cluster with it. For more information, see Amazon Redshift parameter groups .parameter_group_name (
Optional[str]) – The name of the cluster parameter group.parameters (
Union[IResolvable,Sequence[Union[IResolvable,ParameterProperty,Dict[str,Any]]],None]) – An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional. For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The list of tags for the cluster parameter group.
- See:
- 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.mixins_preview.aws_redshift import mixins as redshift_mixins cfn_cluster_parameter_group_mixin_props = redshift_mixins.CfnClusterParameterGroupMixinProps( description="description", parameter_group_family="parameterGroupFamily", parameter_group_name="parameterGroupName", parameters=[redshift_mixins.CfnClusterParameterGroupPropsMixin.ParameterProperty( parameter_name="parameterName", parameter_value="parameterValue" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the parameter group.
- parameter_group_family
The name of the cluster parameter group family that this cluster parameter group is compatible with.
You can create a custom parameter group and then associate your cluster with it. For more information, see Amazon Redshift parameter groups .
- parameter_group_name
The name of the cluster parameter group.
- parameters
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
- tags
The list of tags for the cluster parameter group.