interface ListJobsOptions {
    next_token?: string;
    status?: string;
    submitted_after?: string;
    submitted_before?: number;
}

Hierarchy (view full)

Properties

next_token?: string

Used when querying the next page of jobs. Specify the next_token that was returned in the previous call.

status?: string

Query jobs that have the specified status. Running, Pending, Success, Failed or InternalError.

submitted_after?: string

Query jobs that were submitted at or after the specified date and time (inclusive).

submitted_before?: number

Query jobs that were submitted at or before the specified date and time (inclusive). The submitted_before must be the same or later than submitted_after.