| Did this page help you? Yes No Tell us about it... |
The following tasks guide you through using the low-level Java classes to list all in-progress multipart uploads on a bucket.
Low-Level API Multipart Uploads Listing Process
1 | Create an instance of the |
2 | Execute the |
The following Java code sample demonstrates the preceding tasks.
ListMultipartUploadsRequest allMultpartUploadsRequest =
new ListMultipartUploadsRequest(existingBucketName);
MultipartUploadListing multipartUploadListing =
s3Client.listMultipartUploads(allMultpartUploadsRequest);