Interface CfnClusterParameterGroup.ParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterParameterGroup.ParameterProperty.Jsii$Proxy
- Enclosing class:
- CfnClusterParameterGroup
@Stability(Stable)
public static interface CfnClusterParameterGroup.ParameterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.redshift.*;
ParameterProperty parameterProperty = ParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterParameterGroup.ParameterPropertystatic final classAn implementation forCfnClusterParameterGroup.ParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the parameter.The value of the parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
The name of the parameter. -
getParameterValue
The value of the parameter.If
ParameterNameiswlm_json_configuration, then the maximum size ofParameterValueis 8000 characters. -
builder
-