Job Step Execution Options Args
data class JobStepExecutionOptionsArgs(val initialRetryIntervalSeconds: Output<Int>? = null, val maximumRetryIntervalSeconds: Output<Int>? = null, val retryAttempts: Output<Int>? = null, val retryIntervalBackoffMultiplier: Output<Double>? = null, val timeoutSeconds: Output<Int>? = null) : ConvertibleToJava<JobStepExecutionOptionsArgs>
The execution options of a job step.
Constructors
Properties
Link copied to clipboard
Initial delay between retries for job step execution.
Link copied to clipboard
The maximum amount of time to wait between retries for job step execution.
Link copied to clipboard
Maximum number of times the job step will be reattempted if the first attempt fails.
Link copied to clipboard
The backoff multiplier for the time between retries.
Link copied to clipboard
Execution timeout for the job step.