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/mgn.ts?docs=full";

Job.

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 the specific Job.

§
creationDateTime?: string | null
[src]

Job creation time.

§
endDateTime?: string | null
[src]

Job end time.

§
initiatedBy?: InitiatedBy | null
[src]

Job initiated by field.

§
jobID: string
[src]

Job ID.

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

Servers participating in a specific Job.

§
status?: JobStatus | null
[src]

Job status.

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

Tags associated with specific Job.

§
type?: JobType | null
[src]

Job type.