amazonka-mediaconvert-2.0: Amazon Elemental MediaConvert SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MediaConvert.Types.Queue

Description

 
Synopsis

Documentation

data Queue Source #

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.

See: newQueue smart constructor.

Constructors

Queue' 

Fields

  • arn :: Maybe Text

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

  • createdAt :: Maybe POSIX

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

  • description :: Maybe Text

    An optional description that you create for each queue.

  • lastUpdated :: Maybe POSIX

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

  • pricingPlan :: Maybe PricingPlan

    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 :: Maybe Int

    The estimated number of jobs with a PROGRESSING status.

  • reservationPlan :: Maybe ReservationPlan

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

  • status :: Maybe QueueStatus

    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 :: Maybe Int

    The estimated number of jobs with a SUBMITTED status.

  • type' :: Maybe 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.

  • name :: Text

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

Instances

Instances details
FromJSON Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Generic Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Associated Types

type Rep Queue :: Type -> Type #

Methods

from :: Queue -> Rep Queue x #

to :: Rep Queue x -> Queue #

Read Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Show Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Methods

showsPrec :: Int -> Queue -> ShowS #

show :: Queue -> String #

showList :: [Queue] -> ShowS #

NFData Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Methods

rnf :: Queue -> () #

Eq Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Methods

(==) :: Queue -> Queue -> Bool #

(/=) :: Queue -> Queue -> Bool #

Hashable Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

Methods

hashWithSalt :: Int -> Queue -> Int #

hash :: Queue -> Int #

type Rep Queue Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Queue

newQueue Source #

Arguments

:: Text

$sel:name:Queue'

-> Queue 

Create a value of Queue with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:arn:Queue', queue_arn - An identifier for this resource that is unique within all of AWS.

$sel:createdAt:Queue', queue_createdAt - The timestamp in epoch seconds for when you created the queue.

$sel:description:Queue', queue_description - An optional description that you create for each queue.

$sel:lastUpdated:Queue', queue_lastUpdated - The timestamp in epoch seconds for when you most recently updated the queue.

$sel:pricingPlan:Queue', queue_pricingPlan - 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.

$sel:progressingJobsCount:Queue', queue_progressingJobsCount - The estimated number of jobs with a PROGRESSING status.

$sel:reservationPlan:Queue', queue_reservationPlan - Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.

Queue, 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.

$sel:submittedJobsCount:Queue', queue_submittedJobsCount - The estimated number of jobs with a SUBMITTED status.

$sel:type':Queue', 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.

$sel:name:Queue', queue_name - A name that you create for each queue. Each name must be unique within your account.

queue_arn :: Lens' Queue (Maybe Text) Source #

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

queue_createdAt :: Lens' Queue (Maybe UTCTime) Source #

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

queue_description :: Lens' Queue (Maybe Text) Source #

An optional description that you create for each queue.

queue_lastUpdated :: Lens' Queue (Maybe UTCTime) Source #

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

queue_pricingPlan :: Lens' Queue (Maybe PricingPlan) Source #

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_progressingJobsCount :: Lens' Queue (Maybe Int) Source #

The estimated number of jobs with a PROGRESSING status.

queue_reservationPlan :: Lens' Queue (Maybe ReservationPlan) Source #

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

queue_status :: Lens' Queue (Maybe QueueStatus) Source #

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_submittedJobsCount :: Lens' Queue (Maybe Int) Source #

The estimated number of jobs with a SUBMITTED status.

queue_type :: Lens' Queue (Maybe Type) Source #

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.

queue_name :: Lens' Queue Text Source #

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