Skip to content

aws.mediaconvert.list_queues

Example SQL Queries

SELECT * FROM
aws.mediaconvert.list_queues;

Description

Retrieve a JSON array of up to twenty of your queues. This will return the queues themselves, not just a list of them. To retrieve the next twenty queues, use the nextToken string returned with the array.

Table Definition

Column NameColumn Data Type
list_by Input Column

Optional. When you request a list of queues, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by creation date.

VARCHAR
order Input Column

Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.

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
arn

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

VARCHAR
created_at

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

TIMESTAMP_S
description

An optional description that you create for each queue.

VARCHAR
last_updated

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

TIMESTAMP_S
name

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

VARCHAR
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.

VARCHAR
progressing_jobs_count

The estimated number of jobs with a PROGRESSING status.

BIGINT
reservation_plan

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

STRUCT(
"commitment" VARCHAR,
"expires_at" TIMESTAMP_S,
"purchased_at" TIMESTAMP_S,
"renewal_type" VARCHAR,
"reserved_slots" BIGINT,
"status" VARCHAR
)
Show child fields
reservation_plan.commitment

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

reservation_plan.expires_at

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

reservation_plan.purchased_at

The timestamp in epoch seconds for when you set up the current pricing plan for this reserved 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.

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.

reservation_plan.status

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

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.

VARCHAR
submitted_jobs_count

The estimated number of jobs with a SUBMITTED status.

BIGINT
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.

VARCHAR