interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnClusterParameterGroup.ParameterProperty |
Java | software.amazon.awscdk.services.redshift.CfnClusterParameterGroup.ParameterProperty |
Python | aws_cdk.aws_redshift.CfnClusterParameterGroup.ParameterProperty |
TypeScript | @aws-cdk/aws-redshift » CfnClusterParameterGroup » ParameterProperty |
Describes a parameter in a cluster 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 parameterProperty: redshift.CfnClusterParameterGroup.ParameterProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The name of the parameter. |
| parameter | string | The value of the parameter. |
parameterName
Type:
string
The name of the parameter.
parameterValue
Type:
string
The value of the parameter.
If ParameterName is wlm_json_configuration , then the maximum size of ParameterValue is 8000 characters.

.NET
Java
Python
TypeScript