interface ClusterParameterGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Redshift.ClusterParameterGroupProps |
Java | software.amazon.awscdk.services.redshift.ClusterParameterGroupProps |
Python | aws_cdk.aws_redshift.ClusterParameterGroupProps |
TypeScript (source) | @aws-cdk/aws-redshift » ClusterParameterGroupProps |
Properties for a parameter group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshift from '@aws-cdk/aws-redshift';
const clusterParameterGroupProps: redshift.ClusterParameterGroupProps = {
parameters: {
parametersKey: 'parameters',
},
// the properties below are optional
description: 'description',
};
Properties
Name | Type | Description |
---|---|---|
parameters | { [string]: string } | The parameters in this parameter group. |
description? | string | Description for this parameter group. |
parameters
Type:
{ [string]: string }
The parameters in this parameter group.
description?
Type:
string
(optional, default: a CDK generated description)
Description for this parameter group.