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

QueueStatus

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

Queues can be ACTIVE or PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause a queue continue to run until they finish or result in an error.

type QueueStatus = "ACTIVE" | "PAUSED" | cmnP.UnexpectedEnumValue;

§Type

§
"ACTIVE" | "PAUSED" | cmnP.UnexpectedEnumValue
[src]