CacheParameterGroup
Manages an ElastiCache Parameter Group.
Sample code
exports.createResources = () => [
{
type: "CacheParameterGroup",
group: "ElastiCache",
properties: ({}) => ({
CacheParameterGroupName: "my-parameter-group",
CacheParameterGroupFamily: "redis6.x",
Description: "My Parameter Group",
Tags: [
{
Key: "mykey",
Value: "myvalue",
},
],
}),
},
];
Properties
Used By
Full Examples
List
gc l -t ElastiCache::CacheParameterGroup