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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticache/types.rb

Overview

Note:

When making an API call, you may pass ModifyCacheParameterGroupMessage data as a 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)


4023
4024
4025
4026
4027
# File 'lib/aws-sdk-elasticache/types.rb', line 4023

class ModifyCacheParameterGroupMessage < Struct.new(
  :cache_parameter_group_name,
  :parameter_name_values)
  include Aws::Structure
end

#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:



4023
4024
4025
4026
4027
# File 'lib/aws-sdk-elasticache/types.rb', line 4023

class ModifyCacheParameterGroupMessage < Struct.new(
  :cache_parameter_group_name,
  :parameter_name_values)
  include Aws::Structure
end