Interface CfnParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:18.129Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnParameterGroupPropsstatic final classAn implementation forCfnParameterGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the parameter group.- See Also:
-
getParameterGroupName
The name of the parameter group.- See Also:
-
getParameterNameValues
An array of name-value pairs for the parameters in the group.Each element in the array represents a single parameter.
record-ttl-millisandquery-ttl-millisare the only supported parameter names. For more details, see Configuring TTL Settings .- See Also:
-
builder
- Returns:
- a
CfnParameterGroupProps.BuilderofCfnParameterGroupProps
-