Class: Aws::RedshiftServerless::Types::PerformanceTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::PerformanceTarget
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshiftserverless/types.rb
Overview
An object that represents the price performance target settings for the workgroup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#level ⇒ Integer
The target price performance level for the workgroup.
-
#status ⇒ String
Whether the price performance target is enabled for the workgroup.
Instance Attribute Details
#level ⇒ Integer
The target price performance level for the workgroup. Valid values include 1, 25, 50, 75, and 100. These correspond to the price performance levels LOW_COST, ECONOMICAL, BALANCED, RESOURCEFUL, and HIGH_PERFORMANCE.
2214 2215 2216 2217 2218 2219 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2214 class PerformanceTarget < Struct.new( :level, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Whether the price performance target is enabled for the workgroup.
2214 2215 2216 2217 2218 2219 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2214 class PerformanceTarget < Struct.new( :level, :status) SENSITIVE = [] include Aws::Structure end |