Interface CfnDBClusterParameterGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBClusterParameterGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.893Z") @Stability(Stable) public interface CfnDBClusterParameterGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDBClusterParameterGroup.

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.*;
 Object parameters;
 CfnDBClusterParameterGroupProps cfnDBClusterParameterGroupProps = CfnDBClusterParameterGroupProps.builder()
         .description("description")
         .family("family")
         .parameters(parameters)
         // the properties below are optional
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getDescription

      @Stability(Stable) @NotNull String getDescription()
      The description for the cluster parameter group.
    • getFamily

      @Stability(Stable) @NotNull String getFamily()
      The cluster parameter group family name.
    • getParameters

      @Stability(Stable) @NotNull Object getParameters()
      Provides a list of parameters for the cluster parameter group.
    • getName

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

      Constraints:

      • Must not match the name of an existing DBClusterParameterGroup .

      This value is stored as a lowercase string.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags to be assigned to the cluster parameter group.
    • builder

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