Class: Aws::DeviceFarm::Types::ListJobsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListJobsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list jobs request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Types::Job>
Information about the jobs.
-
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned.
Instance Attribute Details
#jobs ⇒ Array<Types::Job>
Information about the jobs.
2905 2906 2907 2908 2909 2910 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2905 class ListJobsResult < Struct.new( :jobs, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
2905 2906 2907 2908 2909 2910 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2905 class ListJobsResult < Struct.new( :jobs, :next_token) SENSITIVE = [] include Aws::Structure end |