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 class
A builder forCfnClusterParameterGroup.ParameterProperty
static final class
An 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
ParameterName
iswlm_json_configuration
, then the maximum size ofParameterValue
is 8000 characters. -
builder
-