Class: Aws::DeviceFarm::Types::ListSamplesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListSamplesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list samples 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.
-
#samples ⇒ Array<Types::Sample>
Information about the samples.
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.
3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3235 class ListSamplesResult < Struct.new( :samples, :next_token) SENSITIVE = [] include Aws::Structure end |
#samples ⇒ Array<Types::Sample>
Information about the samples.
3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3235 class ListSamplesResult < Struct.new( :samples, :next_token) SENSITIVE = [] include Aws::Structure end |