AWS Fundamentals Logo
AWS Fundamentals
L1 ConstructAWS::ElastiCache::ParameterGroup

CfnParameterGroup

The `AWS::ElastiCache::ParameterGroup` type creates a new cache parameter group. Cache parameter groups control the parameters for a cache cluster.

Import

import { CfnParameterGroup } from 'aws-cdk-lib/aws-elasticache';

Or use the module namespace:

import * as elasticache from 'aws-cdk-lib/aws-elasticache';
// elasticache.CfnParameterGroup

Properties

Configuration passed to the constructor as CfnParameterGroupProps.

cacheParameterGroupFamilyRequired
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`

descriptionRequired
string

The description for this cache parameter group.

propertiesOptional
{ [key: string]: string } | IResolvable

A comma-delimited list of parameter name/value pairs. For example: ``` "Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02" } ```

tagsOptional
CfnTag[]

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.

CloudFormation Resource

This L1 construct maps directly to the following CloudFormation resource type.

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter