Interface CfnClusterParameterGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterParameterGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.412Z")
@Stability(Stable)
public interface CfnClusterParameterGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnClusterParameterGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.redshift.*;
CfnClusterParameterGroupMixinProps cfnClusterParameterGroupMixinProps = CfnClusterParameterGroupMixinProps.builder()
.description("description")
.parameterGroupFamily("parameterGroupFamily")
.parameterGroupName("parameterGroupName")
.parameters(List.of(ParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterParameterGroupMixinPropsstatic final classAn implementation forCfnClusterParameterGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the parameter group.default StringThe name of the cluster parameter group family that this cluster parameter group is compatible with.default StringThe name of the cluster parameter group.default ObjectAn array of parameters to be modified.getTags()The list of tags for the cluster parameter group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the parameter group.- See Also:
-
getParameterGroupFamily
The name of the cluster parameter group family that this cluster parameter group is compatible with.You can create a custom parameter group and then associate your cluster with it. For more information, see Amazon Redshift parameter groups .
- See Also:
-
getParameterGroupName
The name of the cluster parameter group.- See Also:
-
getParameters
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.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.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnClusterParameterGroupPropsMixin.ParameterProperty>- See Also:
-
getTags
The list of tags for the cluster parameter group.- See Also:
-
builder
-