_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 )[] )[] ) ) |
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.
|