-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Describe the issue
The documentation for S3.Object.checksum_sha256 reads as follows (my bold):
The Base64 encoded, 256-bit SHA256 digest of the object. This will only be present if the object was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part.
It's very unclear to me what "the object was uploaded with the object" is supposed to mean.
The only thing I can guess is that it means the upload was not multipart, except that contradicts the following sentence, which implies the checksum will be present for multipart upload and will be a calculation based on the checksums of each part.
IMO this could do with some clarification - I'd glady do it myself, but I don't know enough to be confident of getting it right.