The CompleteMultipartUploadRequest contains the parameters used for the CompleteMultipartUpload method.
Required Parameters: BucketName, Key, UploadId, PartETags

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 CompleteMultipartUploadRequest : S3Request
Public Class CompleteMultipartUploadRequest _
	Inherits S3Request
public ref class CompleteMultipartUploadRequest : public S3Request

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
CompleteMultipartUploadRequest()()()()
Initializes a new instance of the CompleteMultipartUploadRequest 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.
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.)
Key
Gets and sets the Key property.
PartETags
Gets and sets the PartETags property. This collection contains an entry for every part uploaded with its part number and etag.
ToString()()()() (Inherited from S3Request.)
UploadId
Gets and sets the UploadId property. This is the upload id for the multipart upload in process.
WithBucketName(String)
Sets the BucketName property for this request. This is the S3 Bucket where the S3 Object you are creating gets put.
WithInputStream(Stream)
Sets the InputStream property.
(Inherited from S3Request.)
WithKey(String)
Sets the Key property for this request. This is the Key for the S3 Object you create.
WithPartETags(array<PartETag>[]()[][])
Adds the elements from the array in the collection of PartETags for this request.
WithPartETags(IEnumerable<(Of <<'(PartETag>)>>))
Adds the elements from the array in the collection of PartETags for this request.
WithPartETags(array<UploadPartResponse>[]()[][])
Transforms the UploadPartResponses into PartETags and adds them to the request.
WithPartETags(IEnumerable<(Of <<'(UploadPartResponse>)>>))
Transforms the UploadPartResponses into PartETags and adds them to the request.
WithUploadId(String)
Sets the UploadId property for this request. This is the upload id for the multipart upload in process.

Inheritance Hierarchy

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

See Also