interface CfnParameterGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnParameterGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnParameterGroupProps |
Java | software.amazon.awscdk.services.elasticache.CfnParameterGroupProps |
Python | aws_cdk.aws_elasticache.CfnParameterGroupProps |
TypeScript | aws-cdk-lib » aws_elasticache » CfnParameterGroupProps |
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 { aws_elasticache as elasticache } from 'aws-cdk-lib';
const cfnParameterGroupProps: elasticache.CfnParameterGroupProps = {
cacheParameterGroupFamily: 'cacheParameterGroupFamily',
description: 'description',
// the properties below are optional
properties: {
propertiesKey: 'properties',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | string | The name of the cache parameter group family that this cache parameter group is compatible with. |
| description | string | The description for this cache parameter group. |
| properties? | { [string]: string } | IResolvable | A comma-delimited list of parameter name/value pairs. |
| tags? | Cfn[] | A tag that can be added to an ElastiCache parameter group. |
cacheParameterGroupFamily
Type:
string
The name of the cache parameter group family that this cache parameter group is compatible with.
Valid values are: valkey8 | valkey7 | memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7
description
Type:
string
The description for this cache parameter group.
properties?
Type:
{ [string]: string } | IResolvable
(optional)
A comma-delimited list of parameter name/value pairs.
For example:
"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02"
}
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript