Class: Aws::DeviceFarm::Types::ListRunsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListRunsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list runs request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned.
-
#runs ⇒ Array<Types::Run>
Information about the runs.
Instance Attribute Details
#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.
3192 3193 3194 3195 3196 3197 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3192 class ListRunsResult < Struct.new( :runs, :next_token) SENSITIVE = [] include Aws::Structure end |
#runs ⇒ Array<Types::Run>
Information about the runs.
3192 3193 3194 3195 3196 3197 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3192 class ListRunsResult < Struct.new( :runs, :next_token) SENSITIVE = [] include Aws::Structure end |