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();