Class: Aws::Redshift::Types::ModifyClusterParameterGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::ModifyClusterParameterGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-redshift/types.rb
 
Overview
Describes a modify cluster parameter group operation.
Constant Summary collapse
- SENSITIVE =
 []
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.
      8257 8258 8259 8260 8261 8262  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 8257 class ModifyClusterParameterGroupMessage < Struct.new( :parameter_group_name, :parameters) SENSITIVE = [] include Aws::Structure end  | 
  
#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.
      8257 8258 8259 8260 8261 8262  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 8257 class ModifyClusterParameterGroupMessage < Struct.new( :parameter_group_name, :parameters) SENSITIVE = [] include Aws::Structure end  |