Class: Aws::RedshiftServerless::Types::PerformanceTarget

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#levelInteger

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.

Returns:

  • (Integer)


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

#statusString

Whether the price performance target is enabled for the workgroup.

Returns:

  • (String)


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