Class: Aws::Redshift::Types::RecommendedAction
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Redshift::Types::RecommendedAction
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
The recommended action from the Amazon Redshift Advisor recommendation.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #command  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The command to run. 
- 
  
    
      #database  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The database name to perform the action on. 
- 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The specific instruction about the command. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of command. 
Instance Attribute Details
#command ⇒ String
The command to run.
| 9390 9391 9392 9393 9394 9395 9396 9397 | # File 'lib/aws-sdk-redshift/types.rb', line 9390 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end | 
#database ⇒ String
The database name to perform the action on. Only applicable if the type of command is SQL.
| 9390 9391 9392 9393 9394 9395 9396 9397 | # File 'lib/aws-sdk-redshift/types.rb', line 9390 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end | 
#text ⇒ String
The specific instruction about the command.
| 9390 9391 9392 9393 9394 9395 9396 9397 | # File 'lib/aws-sdk-redshift/types.rb', line 9390 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of command.
| 9390 9391 9392 9393 9394 9395 9396 9397 | # File 'lib/aws-sdk-redshift/types.rb', line 9390 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end |