public static interface CfnClusterParameterGroup.ParameterProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnClusterParameterGroup.ParameterProperty.Builder
A builder for
CfnClusterParameterGroup.ParameterProperty |
static class |
CfnClusterParameterGroup.ParameterProperty.Jsii$Proxy
An implementation for
CfnClusterParameterGroup.ParameterProperty |
Modifier and Type | Method and Description |
---|---|
static CfnClusterParameterGroup.ParameterProperty.Builder |
builder() |
java.lang.String |
getParameterName()
The name of the parameter.
|
java.lang.String |
getParameterValue()
The value of the parameter.
|
java.lang.String getParameterName()
java.lang.String getParameterValue()
If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
static CfnClusterParameterGroup.ParameterProperty.Builder builder()