Java com.amazonaws.services.s3.model UploadPartRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.s3.model UploadPartRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.s3.model UploadPartRequest.

The text is from its open source code.

Field

booleanisLastPart
Allows the caller to indicate if this is the last part being uploaded in a multipart upload.

Constructor

Method

FilegetFile()
Returns the file containing the data to upload.
InputStreamgetInputStream()
Returns the stream containing the data to upload for the new part.
StringgetKey()
Returns the key of the initiated multipart upload.
intgetPartNumber()
Returns the part number describing this part's position relative to the other parts in the multipart upload.
voidsetBucketName(String bucketName)
Sets the name of the bucket containing the existing, initiated multipart upload, with which this new part will be associated.
voidsetInputStream(InputStream inputStream)
Sets the stream containing the data to upload for the new part.
voidsetKey(String key)
Sets the key of the initiated multipart upload.
voidsetLastPart(boolean isLastPart)
Marks this part as the last part being uploaded in a multipart upload.
voidsetMd5Digest(String md5Digest)
Sets the optional, but recommended, MD5 hash of the content of this part.
voidsetPartNumber(int partNumber)
Sets the part number describing this part's position relative to the other parts in the multipart upload.
voidsetPartSize(long partSize)
Sets the size of this part, in bytes.
voidsetProgressListener(com.amazonaws.services.s3.model.ProgressListener progressListener)
Sets the optional progress listener for receiving updates about object upload status.
voidsetSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to encrypt the object part being uploaded.
voidsetUploadId(String uploadId)
Sets the ID of the existing, initiated multipart upload with which this new part will be associated.
UploadPartRequestwithSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to encrypt the object part being uploaded, and returns the updated request object so that additional method calls can be chained together.