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

Class: Aws::ElastiCache::Types::ModifyCacheParameterGroupMessage

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

Overview

Note:

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

{
  cache_parameter_group_name: "String", # required
  parameter_name_values: [ # required
    {
      parameter_name: "String",
      parameter_value: "String",
    },
  ],
}

Represents the input of a ModifyCacheParameterGroup operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_parameter_group_nameString

The name of the cache parameter group to modify.

Returns:

  • (String)

    The name of the cache parameter group to modify.

#parameter_name_valuesArray<Types::ParameterNameValue>

An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.

Returns: