Class: Aws::DeviceFarm::Types::ListUploadsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListUploadsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list uploads 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.
-
#uploads ⇒ Array<Types::Upload>
Information about the uploads.
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.
3703 3704 3705 3706 3707 3708 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3703 class ListUploadsResult < Struct.new( :uploads, :next_token) SENSITIVE = [] include Aws::Structure end |
#uploads ⇒ Array<Types::Upload>
Information about the uploads.
3703 3704 3705 3706 3707 3708 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3703 class ListUploadsResult < Struct.new( :uploads, :next_token) SENSITIVE = [] include Aws::Structure end |