Class: Aws::Batch::Types::DescribeJobQueuesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::DescribeJobQueuesResponse
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_queues ⇒ Array<Types::JobQueueDetail>
The list of job queues.
-
#next_token ⇒ String
The
nextToken
value to include in a futureDescribeJobQueues
request.
Instance Attribute Details
#job_queues ⇒ Array<Types::JobQueueDetail>
The list of job queues.
2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 2927 class DescribeJobQueuesResponse < Struct.new( :job_queues, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
value to include in a future DescribeJobQueues
request. When the results of a DescribeJobQueues
request exceed
maxResults
, this value can be used to retrieve the next page of
results. This value is null
when there are no more results to
return.
2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 2927 class DescribeJobQueuesResponse < Struct.new( :job_queues, :next_token) SENSITIVE = [] include Aws::Structure end |