Interface ClusterParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.818Z")
@Stability(Experimental)
public interface ClusterParameterGroupProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a 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.*; ClusterParameterGroupProps clusterParameterGroupProps = ClusterParameterGroupProps.builder() .parameters(Map.of( "parametersKey", "parameters")) // the properties below are optional .description("description") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forClusterParameterGroupProps
static final class
An implementation forClusterParameterGroupProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
(experimental) The parameters in this parameter group. -
getDescription
(experimental) Description for this parameter group.Default: a CDK generated description
-
builder
- Returns:
- a
ClusterParameterGroupProps.Builder
ofClusterParameterGroupProps
-