createCacheParameterGroup

Creates a new Amazon ElastiCache cache parameter group. An ElastiCache cache parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster or replication group using the CacheParameterGroup.

A newly created CacheParameterGroup is an exact duplicate of the default parameter group for the CacheParameterGroupFamily. To customize the newly created CacheParameterGroup you can change the values of specific parameters. For more information, see:

Samples


fun main() { 
   //sampleStart 
   // Creates the Amazon ElastiCache parameter group custom redis2 8.
val resp = elastiCacheClient.createCacheParameterGroup {
    cacheParameterGroupName = "custom-redis2-8"
    cacheParameterGroupFamily = "redis2.8"
    description = "Custom Redis 2.8 parameter group."
} 
   //sampleEnd
}