Class: Aws::MediaConvert::Types::ListQueuesResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#next_tokenString

Use this string to request the next batch of queues.

Returns:

  • (String)


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

#queuesArray<Types::Queue>

List of queues.

Returns:



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_jobsInteger

The maximum number of jobs that MediaConvert can process at one time, across all of your on-demand queues in the current AWS Region.

Returns:

  • (Integer)


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_jobsInteger

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.

Returns:

  • (Integer)


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