interface CfnParameterGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnParameterGroupProps |
Java | software.amazon.awscdk.services.elasticache.CfnParameterGroupProps |
Python | aws_cdk.aws_elasticache.CfnParameterGroupProps |
TypeScript | @aws-cdk/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 * as elasticache from '@aws-cdk/aws-elasticache';
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? | IResolvable | { [string]: string } | 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: 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:
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.