Class: Aws::Redshift::Types::AquaConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::AquaConfiguration
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
The AQUA (Advanced Query Accelerator) configuration of the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aqua_configuration_status ⇒ String
The value represents how the cluster is configured to use AQUA.
-
#aqua_status ⇒ String
The value indicates the status of AQUA on the cluster.
Instance Attribute Details
#aqua_configuration_status ⇒ String
The value represents how the cluster is configured to use AQUA. Possible values include the following.
enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.
disabled - Don't use AQUA.
auto - Amazon Redshift determines whether to use AQUA.
146 147 148 149 150 151 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 146 class AquaConfiguration < Struct.new( :aqua_status, :aqua_configuration_status) SENSITIVE = [] include Aws::Structure end |
#aqua_status ⇒ String
The value indicates the status of AQUA on the cluster. Possible values include the following.
enabled - AQUA is enabled.
disabled - AQUA is not enabled.
applying - AQUA status is being applied.
146 147 148 149 150 151 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 146 class AquaConfiguration < Struct.new( :aqua_status, :aqua_configuration_status) SENSITIVE = [] include Aws::Structure end |