AWS::ElastiCache::ParameterGroupThe `AWS::ElastiCache::ParameterGroup` type creates a new cache parameter group. Cache parameter groups control the parameters for a cache cluster.
import { CfnParameterGroup } from 'aws-cdk-lib/aws-elasticache';Or use the module namespace:
import * as elasticache from 'aws-cdk-lib/aws-elasticache';
// elasticache.CfnParameterGroupConfiguration passed to the constructor as CfnParameterGroupProps.
cacheParameterGroupFamilyRequiredstringThe 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`
descriptionRequiredstringThe description for this cache parameter group.
propertiesOptional{ [key: string]: string } | IResolvableA comma-delimited list of parameter name/value pairs. For example: ``` "Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02" } ```
tagsOptionalCfnTag[]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.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-elasticacheAWS::ElastiCache::ParameterGroup