public static class UploadManager.UploadResponse extends Object
The result referencing the uploaded object.
Constructor and Description |
---|
UploadResponse(String eTag,
String contentMd5,
String multipartMd5,
String opcRequestId,
String opcClientRequestId) |
Modifier and Type | Method and Description |
---|---|
String |
getContentMd5()
The MD5 of the object uploaded.
|
String |
getETag()
The etag of the object uploaded.
|
String |
getMultipartMd5()
The multipart MD5 of the object uploaded.
|
String |
getOpcClientRequestId()
The opc-client-request-id sent with every request, if provided.
|
String |
getOpcRequestId()
The opc-request-id associated with either the PutObject call or the final
CommitMultipartUpload call (if multi-part upload was used).
|
String |
toString() |
public String getETag()
The etag of the object uploaded.
public String getContentMd5()
The MD5 of the object uploaded.
Will be null if the object was uploaded using multi-part. See getMultipartMd5()
instead.
public String getMultipartMd5()
The multipart MD5 of the object uploaded.
Will be null if the object was uploaded using standard put-object. See getContentMd5()
instead.
public String getOpcRequestId()
The opc-request-id associated with either the PutObject call or the final CommitMultipartUpload call (if multi-part upload was used).
public String getOpcClientRequestId()
The opc-client-request-id sent with every request, if provided.
Copyright © 2016–2024. All rights reserved.