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

Queue

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

You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.

interface Queue {
Arn?: string | null;
CreatedAt?: Date | number | null;
Description?: string | null;
LastUpdated?: Date | number | null;
Name: string;
PricingPlan?: PricingPlan | null;
ProgressingJobsCount?: number | null;
ReservationPlan?: ReservationPlan | null;
Status?: QueueStatus | null;
SubmittedJobsCount?: number | null;
Type?: Type | null;
}

§Properties

§
Arn?: string | null
[src]

An identifier for this resource that is unique within all of AWS.

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

The timestamp in epoch seconds for when you created the queue.

§
Description?: string | null
[src]

An optional description that you create for each queue.

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

The timestamp in epoch seconds for when you most recently updated the queue.

§
Name: string
[src]

A name that you create for each queue. Each name must be unique within your account.

§
PricingPlan?: PricingPlan | null
[src]

Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment.

§
ProgressingJobsCount?: number | null
[src]

The estimated number of jobs with a PROGRESSING status.

§
ReservationPlan?: ReservationPlan | null
[src]

Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.

§
Status?: QueueStatus | null
[src]

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

§
SubmittedJobsCount?: number | null
[src]

The estimated number of jobs with a SUBMITTED status.

§
Type?: Type | null
[src]

Specifies whether this on-demand queue is system or custom. System queues are built in. You can't modify or delete system queues. You can create and modify custom queues.