Class: Aws::DeviceFarm::Types::ListDevicesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListDevicesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list devices operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#devices ⇒ Array<Types::Device>
Information about the devices.
-
#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
#devices ⇒ Array<Types::Device>
Information about the devices.
2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2824 class ListDevicesResult < Struct.new( :devices, :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.
2824 2825 2826 2827 2828 2829 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2824 class ListDevicesResult < Struct.new( :devices, :next_token) SENSITIVE = [] include Aws::Structure end |