Class: Aws::MediaConvert::Types::ListQueuesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::ListQueuesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Successful list queues requests return a JSON array of queues. If you don’t specify how they are ordered, you will receive them alphabetically by name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Use this string to request the next batch of queues.
-
#queues ⇒ Array<Types::Queue>
List of queues.
-
#total_concurrent_jobs ⇒ Integer
The maximum number of jobs that MediaConvert can process at one time, across all of your on-demand queues in the current AWS Region.
-
#unallocated_concurrent_jobs ⇒ Integer
The remaining number of concurrent jobs that are not associated with a queue and are available to allocate to a queue.
Instance Attribute Details
#next_token ⇒ String
Use this string to request the next batch of queues.
8916 8917 8918 8919 8920 8921 8922 8923 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 8916 class ListQueuesResponse < Struct.new( :next_token, :queues, :total_concurrent_jobs, :unallocated_concurrent_jobs) SENSITIVE = [] include Aws::Structure end |
#queues ⇒ Array<Types::Queue>
List of queues.
8916 8917 8918 8919 8920 8921 8922 8923 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 8916 class ListQueuesResponse < Struct.new( :next_token, :queues, :total_concurrent_jobs, :unallocated_concurrent_jobs) SENSITIVE = [] include Aws::Structure end |
#total_concurrent_jobs ⇒ Integer
The maximum number of jobs that MediaConvert can process at one time, across all of your on-demand queues in the current AWS Region.
8916 8917 8918 8919 8920 8921 8922 8923 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 8916 class ListQueuesResponse < Struct.new( :next_token, :queues, :total_concurrent_jobs, :unallocated_concurrent_jobs) SENSITIVE = [] include Aws::Structure end |
#unallocated_concurrent_jobs ⇒ Integer
The remaining number of concurrent jobs that are not associated with a queue and are available to allocate to a queue. You can allocate these jobs when you create or update a queue.
8916 8917 8918 8919 8920 8921 8922 8923 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 8916 class ListQueuesResponse < Struct.new( :next_token, :queues, :total_concurrent_jobs, :unallocated_concurrent_jobs) SENSITIVE = [] include Aws::Structure end |