You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Redshift::Types::ModifyClusterParameterGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Redshift::Types::ModifyClusterParameterGroupMessage
 
- Defined in:
- (unknown)
Overview
When passing ModifyClusterParameterGroupMessage as input to an Aws::Client method, you can use a vanilla 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",
    },
  ],
}
Describes a modify cluster parameter group operation.
Instance Attribute Summary collapse
- 
  
    
      #parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the parameter group to be modified. 
- 
  
    
      #parameters  ⇒ Array<Types::Parameter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of parameters to be modified. 
Instance Attribute Details
#parameter_group_name ⇒ String
The name of the parameter group to be modified.
#parameters ⇒ Array<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.