glacier_upload_multipart_part {paws.storage} | R Documentation |
This operation uploads a part of an archive
Description
This operation uploads a part of an archive. You can upload archive parts in any order. You can also upload them in parallel. You can upload up to 10,000 parts for a multipart upload.
See https://www.paws-r-sdk.com/docs/glacier_upload_multipart_part/ for full documentation.
Usage
glacier_upload_multipart_part(
accountId,
vaultName,
uploadId,
checksum = NULL,
range = NULL,
body = NULL
)
Arguments
accountId |
[required] The |
vaultName |
[required] The name of the vault. |
uploadId |
[required] The upload ID of the multipart upload. |
checksum |
The SHA256 tree hash of the data being uploaded. |
range |
Identifies the range of bytes in the assembled archive that will be uploaded in this part. Amazon S3 Glacier uses this information to assemble the archive in the proper sequence. The format of this header follows RFC 2616. An example header is Content-Range:bytes 0-4194303/*. |
body |
The data to upload. |