interface CfnClusterParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnClusterParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnClusterParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnClusterParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnClusterParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnClusterParameterGroupMixinProps |
Properties for CfnClusterParameterGroupPropsMixin.
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 cfnClusterParameterGroupMixinProps: redshift_mixins.CfnClusterParameterGroupMixinProps = {
description: 'description',
parameterGroupFamily: 'parameterGroupFamily',
parameterGroupName: 'parameterGroupName',
parameters: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the parameter group. |
| parameter | string | The name of the cluster parameter group family that this cluster parameter group is compatible with. |
| parameter | string | The name of the cluster parameter group. |
| parameters? | IResolvable | (IResolvable | Parameter)[] | An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. |
| tags? | Cfn[] | The list of tags for the cluster parameter group. |
description?
Type:
string
(optional)
The description of the parameter group.
parameterGroupFamily?
Type:
string
(optional)
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 .
parameterGroupName?
Type:
string
(optional)
The name of the cluster parameter group.
parameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
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?
Type:
Cfn[]
(optional)
The list of tags for the cluster parameter group.

.NET
Go
Java
Python
TypeScript