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

Timing

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

Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.

interface Timing {
FinishTime?: Date | number | null;
StartTime?: Date | number | null;
SubmitTime?: Date | number | null;
}

§Properties

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

The time, in Unix epoch format, that the transcoding job finished

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

The time, in Unix epoch format, that transcoding for the job began.

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

The time, in Unix epoch format, that you submitted the job.