Interface CfnParameterGroupProps

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

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

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.dax.*;
 Object parameterNameValues;
 CfnParameterGroupProps cfnParameterGroupProps = CfnParameterGroupProps.builder()
         .description("description")
         .parameterGroupName("parameterGroupName")
         .parameterNameValues(parameterNameValues)
         .build();
 
  • Method Details

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description of the parameter group.
    • getParameterGroupName

      @Stability(Stable) @Nullable default String getParameterGroupName()
      The name of the parameter group.
    • getParameterNameValues

      @Stability(Stable) @Nullable default Object getParameterNameValues()
      An array of name-value pairs for the parameters in the group.

      Each element in the array represents a single parameter.

      record-ttl-millis and query-ttl-millis are the only supported parameter names. For more details, see Configuring TTL Settings .

    • builder

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