@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-09T19:16:40.374Z")
public interface CfnClusterParameterGroupProps
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.*; CfnClusterParameterGroupProps cfnClusterParameterGroupProps = CfnClusterParameterGroupProps.builder() .description("description") .parameterGroupFamily("parameterGroupFamily") // the properties below are optional .parameters(List.of(ParameterProperty.builder() .parameterName("parameterName") .parameterValue("parameterValue") .build())) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnClusterParameterGroupProps.Builder
A builder for
CfnClusterParameterGroupProps |
static class |
CfnClusterParameterGroupProps.Jsii$Proxy
An implementation for
CfnClusterParameterGroupProps |
Modifier and Type | Method and Description |
---|---|
static CfnClusterParameterGroupProps.Builder |
builder() |
java.lang.String |
getDescription()
The description of the parameter group.
|
java.lang.String |
getParameterGroupFamily()
The name of the cluster parameter group family that this cluster parameter group is compatible with.
|
default java.lang.Object |
getParameters()
An array of parameters to be modified.
|
default java.util.List<CfnTag> |
getTags()
The list of tags for the cluster parameter group.
|
java.lang.String getDescription()
java.lang.String getParameterGroupFamily()
default java.lang.Object getParameters()
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
default java.util.List<CfnTag> getTags()
static CfnClusterParameterGroupProps.Builder builder()