Class: Aws::DeviceFarm::Types::ListUploadsResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


3754
3755
3756
3757
3758
3759
# File 'lib/aws-sdk-devicefarm/types.rb', line 3754

class ListUploadsResult < Struct.new(
  :uploads,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#uploadsArray<Types::Upload>

Information about the uploads.

Returns:



3754
3755
3756
3757
3758
3759
# File 'lib/aws-sdk-devicefarm/types.rb', line 3754

class ListUploadsResult < Struct.new(
  :uploads,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end