Skip to content

aws.mediaconvert.get_queue

Example SQL Queries

SELECT * FROM
aws.mediaconvert.get_queue
WHERE
"name" = 'VALUE';

Description

Retrieve the JSON for a specific queue.

Table Definition

Column NameColumn Data Type
name Required Input Column

The name of the queue that you want information about.

VARCHAR
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
queue

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.

STRUCT(
"arn" VARCHAR,
"created_at" TIMESTAMP_S,
"description" VARCHAR,
"last_updated" TIMESTAMP_S,
"name" VARCHAR,
"pricing_plan" VARCHAR,
"progressing_jobs_count" BIGINT,
"reservation_plan" STRUCT(
"commitment" VARCHAR,
"expires_at" TIMESTAMP_S,
"purchased_at" TIMESTAMP_S,
"renewal_type" VARCHAR,
"reserved_slots" BIGINT,
"status" VARCHAR
),
"status" VARCHAR,
"submitted_jobs_count" BIGINT,
"type" VARCHAR
)
Show child fields
queue.arn

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

queue.created_at

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

queue.description

An optional description that you create for each queue.

queue.last_updated

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

queue.name

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

queue.pricing_plan

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.

queue.progressing_jobs_count

The estimated number of jobs with a PROGRESSING status.

queue.reservation_plan

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

Show child fields
queue.reservation_plan.commitment

The length of the term of your reserved queue pricing plan commitment.

queue.reservation_plan.expires_at

The timestamp in epoch seconds for when the current pricing plan term for this reserved queue expires.

queue.reservation_plan.purchased_at

The timestamp in epoch seconds for when you set up the current pricing plan for this reserved queue.

queue.reservation_plan.renewal_type

Specifies whether the term of your reserved queue pricing plan is automatically extended (AUTO_RENEW) or expires (EXPIRE) at the end of the term.

queue.reservation_plan.reserved_slots

Specifies the number of reserved transcode slots (RTS) for this queue. The number of RTS determines how many jobs the queue can process in parallel; each RTS can process one job at a time. When you increase this number, you extend your existing commitment with a new 12-month commitment for a larger number of RTS. The new commitment begins when you purchase the additional capacity. You can't decrease the number of RTS in your reserved queue.

queue.reservation_plan.status

Specifies whether the pricing plan for your reserved queue is ACTIVE or EXPIRED.

queue.status

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.

queue.submitted_jobs_count

The estimated number of jobs with a SUBMITTED status.

queue.type

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.