ScheduleCapacityProviderStrategyItemArgs

data class ScheduleCapacityProviderStrategyItemArgs(val base: Output<Double>? = null, val capacityProvider: Output<String>, val weight: Output<Double>? = null) : ConvertibleToJava<ScheduleCapacityProviderStrategyItemArgs>

The details of a capacity provider strategy.

Constructors

Link copied to clipboard
constructor(base: Output<Double>? = null, capacityProvider: Output<String>, weight: Output<Double>? = null)

Properties

Link copied to clipboard
val base: Output<Double>? = null

The base value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a base defined. If no value is specified, the default value of 0 is used.

Link copied to clipboard

The short name of the capacity provider.

Link copied to clipboard
val weight: Output<Double>? = null

The weight value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The weight value is taken into consideration after the base value, if defined, is satisfied.

Functions

Link copied to clipboard
open override fun toJava(): ScheduleCapacityProviderStrategyItemArgs