For the content of a complete multipart upload request body, you use XML in this format:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<CompleteMultipartUpload
xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
Include one Part element for each part to be used for the completed object.
<Part>
<PartNumber>part-number</PartNumber>
<ETag>etag</ETag>
</Part>
.
.
.
</CompleteMultipartUpload>
The table below describes the XML elements in a complete multipart upload request body. The elements are listed in alphabetical order.
Element | Description |
---|---|
CompleteMultipart Upload |
Root element. This must be the first element in the complete multipart upload request body. The CompleteMultipartUpload element can optionally include this XML namespace specification: xmlns="http://s3.amazonaws.com/doc/2006-03-01/" |
ETag |
Child of the Part element. The ETag element specifies the ETag of the applicable part. |
Part |
Child of the CompleteMultipartUpload element and container for the elements that describe a part. The Part element identifies a part that has been uploaded for the multipart upload. |
PartNumber |
Child of the Part element. The PartNumber element specifies the part number of the applicable part. |
© 2015, 2020 Hitachi Vantara LLC. All rights reserved.