The ListMultipartUploadsRequest contains the parameters used for the ListMultipartUploads method.
Required Parameters: BucketName

Namespace: Amazon.S3.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class ListMultipartUploadsRequest : S3Request
Public Class ListMultipartUploadsRequest _
	Inherits S3Request
public ref class ListMultipartUploadsRequest : public S3Request

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ListMultipartUploadsRequest()()()()
Initializes a new instance of the ListMultipartUploadsRequest class
AddHeader(String, String)
Adds the header to the collection of headers for the request.
(Inherited from S3Request.)
AddHeaders(NameValueCollection)
Adds all of the key/value pairs from collection into our request header.
(Inherited from S3Request.)
BucketName
Gets and sets the BucketName property.
Delimiter
Gets and sets the Delimiter property. Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element in the CommonPrefixes collection.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
InputStream
Gets and sets the InputStream property.
(Inherited from S3Request.)
KeyMarker
Gets and sets the KeyMarker property.

Together with UploadIdMarker, specifies the multipart upload after which listing should begin.

If UploadIdMarker is not specified, only the keys lexicographically greater than the specified key-marker will be included in the list.

If UploadIdMarker is specified, any multipart uploads for a key equal to the key-marker may also be included, provided those multipart uploads have upload IDs lexicographically greater than the specified UploadIdMarker.

MaxUploads
Gets and sets the MaxUploads property.

Sets the maximum number of multipart uploads to return in the response body

Prefix
Gets and sets the Prefix property. All keys matched will have this prefix.
ToString()()()() (Inherited from S3Request.)
UploadIdMarker
Gets and sets the UploadIdMarker property.

Together with KeyMarker, specifies the multipart upload after which listing should begin. If KeyMarker is not specified, the UploadIdMarker parameter is ignored. Otherwise, any multipart uploads for a key equal to the KeyMarker may be included in the list only if they have an upload ID lexicographically greater than the specified

WithBucketName(String)
Sets the BucketName property for this request.
WithDelimiter(String)
Sets the Delimiter property for this request. Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element in the CommonPrefixes collection. These rolled-up keys are not returned elsewhere in the response.
WithInputStream(Stream)
Sets the InputStream property.
(Inherited from S3Request.)
WithKeyMarker(String)
Sets the KeyMarker property for this request.
WithMaxUploads(Int32)
Sets the MaxUploads property for this request.
WithPrefix(String)
Sets the Prefix property for this request. All keys matched will have this prefix.
WithUploadIdMarker(String)
Sets the UploadIdMarker property for this request.

Inheritance Hierarchy

System..::..Object
  Amazon.S3.Model..::..S3Request
    Amazon.S3.Model..::..ListMultipartUploadsRequest

See Also