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

JobListEntry

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

Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of an export job.

interface JobListEntry {
CreationDate?: Date | number | null;
Description?: string | null;
IsMaster?: boolean | null;
JobId?: string | null;
JobState?: JobState | null;
JobType?: JobType | null;
SnowballType?: SnowballType | null;
}

§Properties

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

The creation date for this job.

§
Description?: string | null
[src]

The optional description of this specific job, for example Important Photos 2016-08-11.

§
IsMaster?: boolean | null
[src]

A value that indicates that this job is a main job. A main job represents a successful request to create an export job. Main jobs aren't associated with any Snowballs. Instead, each main job will have at least one job part, and each job part is associated with a Snowball. It might take some time before the job parts associated with a particular main job are listed, because they are created after the main job is created.

§
JobId?: string | null
[src]

The automatically generated ID for a job, for example JID123e4567-e89b-12d3-a456-426655440000.

§
JobState?: JobState | null
[src]

The current state of this job.

§
JobType?: JobType | null
[src]

The type of job.

§
SnowballType?: SnowballType | null
[src]

The type of device used with this job.