This operation uploads a part of an archive
Source:R/glacier_operations.R
glacier_upload_multipart_part.RdThis 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
AccountIdvalue is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single '-' (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens ('-') in the ID.- 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 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.