Class: Aws::DeviceFarm::Types::ListDevicePoolsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListDevicePoolsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list device pools request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#device_pools ⇒ Array<Types::DevicePool>
Information about the device pools.
-
#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
#device_pools ⇒ Array<Types::DevicePool>
Information about the device pools.
2709 2710 2711 2712 2713 2714 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2709 class ListDevicePoolsResult < Struct.new( :device_pools, :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.
2709 2710 2711 2712 2713 2714 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2709 class ListDevicePoolsResult < Struct.new( :device_pools, :next_token) SENSITIVE = [] include Aws::Structure end |