A pipeline job event to be processed by the execution plan.

interface JobCanceledEvent {
    jobId?: string;
    name?: string;
    reason?: string;
    timeout?: any;
}

Hierarchy (View Summary)

Properties

jobId?: string

The ID of the pipeline job affected by the event.

name?: string

The name of the pipeline job event.

reason?: string

The reason for job cancellation.

timeout?: any

The job's timeout interval.