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

JobListDescriptor

import type { JobListDescriptor } from "https://aws-api.deno.dev/v0.4/services/s3control.ts?docs=full";

Contains the configuration and status information for a single job retrieved as part of a job list.

interface JobListDescriptor {
CreationTime?: Date | number | null;
Description?: string | null;
JobId?: string | null;
Operation?: OperationName | null;
Priority?: number | null;
ProgressSummary?: JobProgressSummary | null;
Status?: JobStatus | null;
TerminationDate?: Date | number | null;
}

§Properties

§
CreationTime?: Date | number | null
[src]

A timestamp indicating when the specified job was created.

§
Description?: string | null
[src]

The user-specified description that was included in the specified job's Create Job request.

§
JobId?: string | null
[src]

The ID for the specified job.

§
Operation?: OperationName | null
[src]

The operation that the specified job is configured to run on every object listed in the manifest.

§
Priority?: number | null
[src]

The current priority for the specified job.

§
ProgressSummary?: JobProgressSummary | null
[src]

Describes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.

§
Status?: JobStatus | null
[src]

The specified job's current status.

§
TerminationDate?: Date | number | null
[src]

A timestamp indicating when the specified job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.