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

QueueTransition

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

Description of the source and destination queues between which the job has moved, along with the timestamp of the move

interface QueueTransition {
DestinationQueue?: string | null;
SourceQueue?: string | null;
Timestamp?: Date | number | null;
}

§Properties

§
DestinationQueue?: string | null
[src]

The queue that the job was on after the transition.

§
SourceQueue?: string | null
[src]

The queue that the job was on before the transition.

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

The time, in Unix epoch format, that the job moved from the source queue to the destination queue.