Class: Aws::Redshift::Types::ModifyClusterParameterGroupMessage

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

Overview

Note:

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

{
  parameter_group_name: "String", # required
  parameters: [ # required
    {
      parameter_name: "String",
      parameter_value: "String",
      description: "String",
      source: "String",
      data_type: "String",
      allowed_values: "String",
      apply_type: "static", # accepts static, dynamic
      is_modifiable: false,
      minimum_engine_version: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_group_nameString

The name of the parameter group to be modified.

Returns:

  • (String)


5787
5788
5789
5790
5791
# File 'lib/aws-sdk-redshift/types.rb', line 5787

class ModifyClusterParameterGroupMessage < Struct.new(
  :parameter_group_name,
  :parameters)
  include Aws::Structure
end

#parametersArray<Types::Parameter>

An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.

For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.

For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.

Returns:



5787
5788
5789
5790
5791
# File 'lib/aws-sdk-redshift/types.rb', line 5787

class ModifyClusterParameterGroupMessage < Struct.new(
  :parameter_group_name,
  :parameters)
  include Aws::Structure
end