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.455Z")
@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.elasticache.*;
CfnParameterGroupProps cfnParameterGroupProps = CfnParameterGroupProps.builder()
.cacheParameterGroupFamily("cacheParameterGroupFamily")
.description("description")
// the properties below are optional
.properties(Map.of(
"propertiesKey", "properties"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnParameterGroupPropsstatic final classAn implementation forCfnParameterGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the cache parameter group family that this cache parameter group is compatible with.The description for this cache parameter group.default ObjectA comma-delimited list of parameter name/value pairs.getTags()A tag that can be added to an ElastiCache parameter group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCacheParameterGroupFamily
The name of the cache parameter group family that this cache parameter group is compatible with.Valid values are:
memcached1.4|memcached1.5|memcached1.6|redis2.6|redis2.8|redis3.2|redis4.0|redis5.0|redis6.x|redis7 -
getDescription
The description for this cache parameter group. -
getProperties
A comma-delimited list of parameter name/value pairs.For example:
"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02" } -
getTags
A tag that can be added to an ElastiCache parameter group.Tags are composed of a Key/Value pair. You can use tags to categorize and track all your parameter groups. A tag with a null Value is permitted.
-
builder
- Returns:
- a
CfnParameterGroupProps.BuilderofCfnParameterGroupProps
-