JobStepExecutionOptionsResponse

data class JobStepExecutionOptionsResponse(val initialRetryIntervalSeconds: Int? = null, val maximumRetryIntervalSeconds: Int? = null, val retryAttempts: Int? = null, val retryIntervalBackoffMultiplier: Double? = null, val timeoutSeconds: Int? = null)

The execution options of a job step.

Constructors

Link copied to clipboard
constructor(initialRetryIntervalSeconds: Int? = null, maximumRetryIntervalSeconds: Int? = null, retryAttempts: Int? = null, retryIntervalBackoffMultiplier: Double? = null, timeoutSeconds: Int? = null)

Types

Link copied to clipboard
object Companion

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
val retryAttempts: Int? = null

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
val timeoutSeconds: Int? = null

Execution timeout for the job step.