@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-09T19:25:26.019Z") @Stability(value=Stable) public interface CfnClusterParameterGroupProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getDescription()
The description of the parameter group.
|
String |
getParameterGroupFamily()
The name of the cluster parameter group family that this cluster parameter group is compatible with.
|
default Object |
getParameters()
An array of parameters to be modified.
|
default List<CfnTag> |
getTags()
The list of tags for the cluster parameter group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getParameterGroupFamily()
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnClusterParameterGroupProps.Builder builder()
Copyright © 2022. All rights reserved.