aws-cdk-lib.aws_elasticache.CfnParameterGroupProps

interface CfnParameterGroupProps

LanguageType name
.NETAmazon.CDK.AWS.ElastiCache.CfnParameterGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnParameterGroupProps
Javasoftware.amazon.awscdk.services.elasticache.CfnParameterGroupProps
Pythonaws_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

NameTypeDescription
cacheParameterGroupFamilystringThe name of the cache parameter group family that this cache parameter group is compatible with.
descriptionstringThe description for this cache parameter group.
properties?IResolvable | { [string]: string }A comma-delimited list of parameter name/value pairs.
tags?CfnTag[]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: 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: IResolvable | { [string]: string } (optional)

A comma-delimited list of parameter name/value pairs.

For example:

"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02"
}

tags?

Type: CfnTag[] (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.