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.
9680 9681 9682 9683 9684 9685 9686 9687 |
# File 'lib/aws-sdk-redshift/types.rb', line 9680 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.
9680 9681 9682 9683 9684 9685 9686 9687 |
# File 'lib/aws-sdk-redshift/types.rb', line 9680 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The specific instruction about the command.
9680 9681 9682 9683 9684 9685 9686 9687 |
# File 'lib/aws-sdk-redshift/types.rb', line 9680 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of command.
9680 9681 9682 9683 9684 9685 9686 9687 |
# File 'lib/aws-sdk-redshift/types.rb', line 9680 class RecommendedAction < Struct.new( :text, :database, :command, :type) SENSITIVE = [] include Aws::Structure end |