Class: Aws::Glacier::Types::ListMultipartUploadsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glacier/types.rb

Overview

Contains the Amazon Glacier response to your request.

Instance Attribute Summary collapse

Instance Attribute Details

#markerString

An opaque string that represents where to continue pagination of the results. You use the marker in a new List Multipart Uploads request to obtain more uploads in the list. If there are no more uploads, this value is ‘null`.

Returns:

  • (String)


1921
1922
1923
1924
1925
# File 'lib/aws-sdk-glacier/types.rb', line 1921

class ListMultipartUploadsOutput < Struct.new(
  :uploads_list,
  :marker)
  include Aws::Structure
end

#uploads_listArray<Types::UploadListElement>

A list of in-progress multipart uploads.

Returns:



1921
1922
1923
1924
1925
# File 'lib/aws-sdk-glacier/types.rb', line 1921

class ListMultipartUploadsOutput < Struct.new(
  :uploads_list,
  :marker)
  include Aws::Structure
end