@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.986Z") @Stability(value=Stable) public interface CfnParameterGroupProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnParameterGroupProps.Builder
A builder for
CfnParameterGroupProps |
static class |
CfnParameterGroupProps.Jsii$Proxy
An implementation for
CfnParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnParameterGroupProps.Builder |
builder() |
String |
getCacheParameterGroupFamily()
The name of the cache parameter group family that this cache parameter group is compatible with.
|
String |
getDescription()
The description for this cache parameter group.
|
default Object |
getProperties()
A comma-delimited list of parameter name/value pairs.
|
default List<CfnTag> |
getTags()
A tag that can be added to an ElastiCache parameter group.
|
@Stability(value=Stable) @NotNull String getCacheParameterGroupFamily()
Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @Nullable default Object getProperties()
For more information, see ModifyCacheParameterGroup in the Amazon ElastiCache API Reference Guide .
For example:
"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02"
}
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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.
@Stability(value=Stable) static CfnParameterGroupProps.Builder builder()
CfnParameterGroupProps.Builder of CfnParameterGroupPropsCopyright © 2022. All rights reserved.