C# Class Amazon.S3.Model.CompleteMultipartUploadRequest

Container for the parameters to the CompleteMultipartUpload operation.

Completes a multipart upload by assembling previously uploaded parts.

Inheritance: Amazon.Runtime.AmazonWebServiceRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
AddPartETags ( ) : void

Adds a collection of part numbers and corresponding etags.

AddPartETags ( IEnumerable responses ) : void

Adds a collection of part numbers and corresponding etags by transforming the CopyPartResponse into PartETags.

AddPartETags ( IEnumerable partETags ) : void

Adds a collection of part numbers and corresponding etags.

AddPartETags ( IEnumerable responses ) : void

Adds a collection of part numbers and corresponding etags by transforming the UploadPartResponses into PartETags.

Private Methods

Method Description
IsSetBucketName ( ) : bool
IsSetKey ( ) : bool
IsSetRequestPayer ( ) : bool

Checks to see if RequetsPayer is set.

IsSetUploadId ( ) : bool

Method Details

AddPartETags() public method

Adds a collection of part numbers and corresponding etags.
public AddPartETags ( ) : void
return void

AddPartETags() public method

Adds a collection of part numbers and corresponding etags by transforming the CopyPartResponse into PartETags.
public AddPartETags ( IEnumerable responses ) : void
responses IEnumerable The list of response objects return from CopyParts.
return void

AddPartETags() public method

Adds a collection of part numbers and corresponding etags.
public AddPartETags ( IEnumerable partETags ) : void
partETags IEnumerable PartETags that will added to this request.
return void

AddPartETags() public method

Adds a collection of part numbers and corresponding etags by transforming the UploadPartResponses into PartETags.
public AddPartETags ( IEnumerable responses ) : void
responses IEnumerable The list of response objects return from UploadParts.
return void