Interface CfnParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:59.694Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnParameterGroupProps
static final class
An 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-millis
andquery-ttl-millis
are the only supported parameter names. For more details, see Configuring TTL Settings .- See Also:
-
builder
- Returns:
- a
CfnParameterGroupProps.Builder
ofCfnParameterGroupProps
-