WorkgroupPricePerformanceTarget constructor

const WorkgroupPricePerformanceTarget({
  1. required Input<bool> enabled,
  2. Input<int?>? level,
})

Creates a new WorkgroupPricePerformanceTarget. enabled Whether to enable price-performance scaling. level The price-performance scaling level. Valid values are 1 (LOW_COST), 25 (ECONOMICAL), 50 (BALANCED), 75 (RESOURCEFUL), and 100 (HIGH_PERFORMANCE).

Implementation

const WorkgroupPricePerformanceTarget({
  required this.enabled,
  this.level,
});