Class: Aws::DAX::Types::UpdateParameterGroupRequest

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

Overview

Note:

When making an API call, you may pass UpdateParameterGroupRequest data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_group_nameString

The name of the parameter group.

Returns:

  • (String)


1574
1575
1576
1577
1578
# File 'lib/aws-sdk-dax/types.rb', line 1574

class UpdateParameterGroupRequest < Struct.new(
  :parameter_group_name,
  :parameter_name_values)
  include Aws::Structure
end

#parameter_name_valuesArray<Types::ParameterNameValue>

An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.

Returns:



1574
1575
1576
1577
1578
# File 'lib/aws-sdk-dax/types.rb', line 1574

class UpdateParameterGroupRequest < Struct.new(
  :parameter_group_name,
  :parameter_name_values)
  include Aws::Structure
end