Interface JobFailureConfiguration

interface JobFailureConfiguration {
    errorMessage: string;
    retries?: number;
    retryBackOff?: number;
    variables?: JSONDoc;
}

Properties

errorMessage: string
retries?: number

If not specified, the library will decrement the "current remaining retries" count by one

retryBackOff?: number

Optional backoff for subsequent retries, in milliseconds. If not specified, it is zero.

variables?: JSONDoc

Optional variable update for the job

Generated using TypeDoc