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:41.905Z") @Stability(Stable) public interface ClusterParameterGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for a cluster 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.docdb.*;
 ClusterParameterGroupProps clusterParameterGroupProps = ClusterParameterGroupProps.builder()
         .family("family")
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         // the properties below are optional
         .dbClusterParameterGroupName("dbClusterParameterGroupName")
         .description("description")
         .build();
 
  • Method Details

    • getFamily

      @Stability(Stable) @NotNull String getFamily()
      Database family of this parameter group.
    • getParameters

      @Stability(Stable) @NotNull Map<String,String> getParameters()
      The parameters in this parameter group.
    • getDbClusterParameterGroupName

      @Stability(Stable) @Nullable default String getDbClusterParameterGroupName()
      The name of the cluster parameter group.

      Default: A CDK generated name for the cluster parameter group

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      Description for this parameter group.

      Default: a CDK generated description

    • builder

      @Stability(Stable) static ClusterParameterGroupProps.Builder builder()
      Returns:
      a ClusterParameterGroupProps.Builder of ClusterParameterGroupProps