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

JobEntry

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

AWS Data Exchange Jobs are asynchronous import or export operations used to create or copy assets. A data set owner can both import and export as they see fit. Someone with an entitlement to a data set can only export. Jobs are deleted 90 days after they are created.

interface JobEntry {
Arn: string;
CreatedAt: Date | number;
Details: ResponseDetails;
Errors?: JobError[] | null;
Id: string;
State: State;
Type: Type;
UpdatedAt: Date | number;
}

§Properties

§
Arn: string
[src]

The ARN for the job.

§
CreatedAt: Date | number
[src]

The date and time that the job was created, in ISO 8601 format.

§

Details of the operation to be performed by the job, such as export destination details or import source details.

§
Errors?: JobError[] | null
[src]

Errors for jobs.

§
Id: string
[src]

The unique identifier for the job.

§
State: State
[src]

The state of the job.

§
Type: Type
[src]

The job type.

§
UpdatedAt: Date | number
[src]

The date and time that the job was last updated, in ISO 8601 format.