Class: Aws::DeviceFarm::Types::ListSuitesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListSuitesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list suites 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.
-
#suites ⇒ Array<Types::Suite>
Information about the suites.
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.
3278 3279 3280 3281 3282 3283 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3278 class ListSuitesResult < Struct.new( :suites, :next_token) SENSITIVE = [] include Aws::Structure end |
#suites ⇒ Array<Types::Suite>
Information about the suites.
3278 3279 3280 3281 3282 3283 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3278 class ListSuitesResult < Struct.new( :suites, :next_token) SENSITIVE = [] include Aws::Structure end |