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

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

Introduction

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

The text is from its open source code.

Field

booleanisTruncated
Indicates if the listing is truncated, and additional requests need to be made to get more results.

Constructor

Method

StringgetBucketName()
Returns the name of the bucket containing the listed multipart uploads, as specified in the original request.
ListgetCommonPrefixes()

Returns the common prefixes included in this multipart upload listing.

StringgetDelimiter()
Gets the delimiter parameter originally used to request this multipart upload listing, or null if no delimiter specified.
StringgetKeyMarker()
Returns the optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.
intgetMaxUploads()
Returns the optional maximum number of uploads to be listed, as specified in the original request.
ListgetMultipartUploads()
Returns the list of multipart uploads.
StringgetNextKeyMarker()
Returns the next key marker that should be used in the next request to get the next page of results.
StringgetNextUploadIdMarker()
Returns the next upload ID marker that should be used in the next request to get the next page of results.
StringgetPrefix()
Returns the prefix parameter originally used to request this multipart upload listing, or null if no prefix was specified.
StringgetUploadIdMarker()
Returns the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.
voidsetBucketName(String bucketName)
Sets the name of the bucket containing the listed multipart uploads, as specified in the original request.
voidsetMultipartUploads(List multipartUploads)
Sets the list of multipart uploads.
voidsetNextKeyMarker(String nextKeyMarker)
Sets the next key marker that should be used in the next request to get the next page of results.
voidsetNextUploadIdMarker(String nextUploadIdMarker)
Sets the next upload ID marker that should be used in the next request to get the next page of results.
voidsetTruncated(boolean isTruncated)
Sets whether this listing is truncated, and additional requests need to be made to get more results.
voidsetUploadIdMarker(String uploadIdMarker)
Sets the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.