You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElastiCache::Types::CreateCacheParameterGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateCacheParameterGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  cache_parameter_group_name: "String", # required
  cache_parameter_group_family: "String", # required
  description: "String", # required
}

Represents the input of a CreateCacheParameterGroup operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_parameter_group_familyString

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

Returns:

  • (String)

    The name of the cache parameter group family that the cache parameter group can be used with.

#cache_parameter_group_nameString

A user-specified name for the cache parameter group.

Returns:

  • (String)

    A user-specified name for the cache parameter group.

#descriptionString

A user-specified description for the cache parameter group.

Returns:

  • (String)

    A user-specified description for the cache parameter group.