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

Job

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

A job is an asynchronous workflow.

interface Job {
arn?: string | null;
creationDateTime?: string | null;
endDateTime?: string | null;
initiatedBy?: InitiatedBy | null;
jobID: string;
participatingServers?: ParticipatingServer[] | null;
status?: JobStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type?: JobType | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of a Job.

§
creationDateTime?: string | null
[src]

The date and time of when the Job was created.

§
endDateTime?: string | null
[src]

The date and time of when the Job ended.

§
initiatedBy?: InitiatedBy | null
[src]

A string representing who initiated the Job.

§
jobID: string
[src]

The ID of the Job.

§
participatingServers?: ParticipatingServer[] | null
[src]

A list of servers that the Job is acting upon.

§
status?: JobStatus | null
[src]

The status of the Job.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags associated with the Job.

§
type?: JobType | null
[src]

The type of the Job.