Class: Aws::DeviceFarm::Types::ListTestsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListTestsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list tests 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.
-
#tests ⇒ Array<Types::Test>
Information about the tests.
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.
3535 3536 3537 3538 3539 3540 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3535 class ListTestsResult < Struct.new( :tests, :next_token) SENSITIVE = [] include Aws::Structure end |
#tests ⇒ Array<Types::Test>
Information about the tests.
3535 3536 3537 3538 3539 3540 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3535 class ListTestsResult < Struct.new( :tests, :next_token) SENSITIVE = [] include Aws::Structure end |