Job Scale Args
data class JobScaleArgs(val maxExecutions: Output<Int>? = null, val minExecutions: Output<Int>? = null, val pollingInterval: Output<Int>? = null, val rules: Output<List<JobScaleRuleArgs>>? = null) : ConvertibleToJava<JobScaleArgs>
Scaling configurations for event driven jobs.
Constructors
Link copied to clipboard
constructor(maxExecutions: Output<Int>? = null, minExecutions: Output<Int>? = null, pollingInterval: Output<Int>? = null, rules: Output<List<JobScaleRuleArgs>>? = null)
Properties
Link copied to clipboard
Maximum number of job executions that are created for a trigger, default 100.
Link copied to clipboard
Minimum number of job executions that are created for a trigger, default 0
Link copied to clipboard
Interval to check each event source in seconds. Defaults to 30s
Link copied to clipboard
Scaling rules.