interface ParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnClusterParameterGroup.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnClusterParameterGroup_ParameterProperty |
Java | software.amazon.awscdk.services.redshift.CfnClusterParameterGroup.ParameterProperty |
Python | aws_cdk.aws_redshift.CfnClusterParameterGroup.ParameterProperty |
TypeScript | aws-cdk-lib » 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 { aws_redshift as redshift } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript