Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JobBookmarkEntry

import type { JobBookmarkEntry } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Defines a point that a job can resume processing.

interface JobBookmarkEntry {
Attempt?: number | null;
JobBookmark?: string | null;
JobName?: string | null;
PreviousRunId?: string | null;
Run?: number | null;
RunId?: string | null;
Version?: number | null;
}

§Properties

§
Attempt?: number | null
[src]

The attempt ID number.

§
JobBookmark?: string | null
[src]

The bookmark itself.

§
JobName?: string | null
[src]

The name of the job in question.

§
PreviousRunId?: string | null
[src]

The unique run identifier associated with the previous job run.

§
Run?: number | null
[src]

The run ID number.

§
RunId?: string | null
[src]

The run ID number.

§
Version?: number | null
[src]

The version of the job.