AWS cli documentation change
Summary
Added documentation for new checksum algorithms (SHA512, MD5, XXHASH64, XXHASH3, XXHASH128) in list-parts operation response fields
Security assessment
This change adds documentation for multiple checksum algorithms that can be used for object integrity verification. While checksums are security features for data integrity, this appears to be a feature enhancement adding support for additional checksum types rather than addressing a specific security vulnerability. The documentation references the 'Checking object integrity' guide, which is security-related documentation.
Diff
diff --git a/cli/latest/reference/s3api/list-parts.md b/cli/latest/reference/s3api/list-parts.md index 3b538de79..998a1dd9d 100644 --- a//cli/latest/reference/s3api/list-parts.md +++ b//cli/latest/reference/s3api/list-parts.md @@ -15 +15 @@ - * [AWS CLI 2.34.34 Command Reference](../../index.html) » + * [AWS CLI 2.34.37 Command Reference](../../index.html) » @@ -489,0 +490,20 @@ Parts -> (list) +>> +>> ChecksumSHA512 -> (string) +>> +>>> The Base64 encoded, 512-bit `SHA512` digest of the part. This checksum is present if the multipart upload request was created with the `SHA512` checksum algorithm. For more information, see [Checking object integrity](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) in the _Amazon S3 User Guide_ . +>> +>> ChecksumMD5 -> (string) +>> +>>> The Base64 encoded, 128-bit `MD5` digest of the part. This checksum is present if the multipart upload request was created with the `MD5` checksum algorithm. For more information, see [Checking object integrity](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) in the _Amazon S3 User Guide_ . +>> +>> ChecksumXXHASH64 -> (string) +>> +>>> The Base64 encoded, 64-bit `XXHASH64` checksum of the part. This checksum is present if the multipart upload request was created with the `XXHASH64` checksum algorithm. For more information, see [Checking object integrity](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) in the _Amazon S3 User Guide_ . +>> +>> ChecksumXXHASH3 -> (string) +>> +>>> The Base64 encoded, 64-bit `XXHASH3` checksum of the part. This checksum is present if the multipart upload request was created with the `XXHASH3` checksum algorithm. For more information, see [Checking object integrity](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) in the _Amazon S3 User Guide_ . +>> +>> ChecksumXXHASH128 -> (string) +>> +>>> The Base64 encoded, 128-bit `XXHASH128` checksum of the part. This checksum is present if the multipart upload request was created with the `XXHASH128` checksum algorithm. For more information, see [Checking object integrity](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) in the _Amazon S3 User Guide_ . @@ -573,0 +594,5 @@ ChecksumAlgorithm -> (string) +> * `SHA512` +> * `MD5` +> * `XXHASH64` +> * `XXHASH3` +> * `XXHASH128` @@ -598 +623 @@ ChecksumType -> (string) - * [AWS CLI 2.34.34 Command Reference](../../index.html) » + * [AWS CLI 2.34.37 Command Reference](../../index.html) »