AWS cli documentation change
Summary
Added new checksum parameters (SHA512, MD5, XXHASH64, XXHASH3, XXHASH128) for data integrity verification and updated CLI version reference
Security assessment
The change adds documentation for new checksum parameters that enable data integrity verification, which is a security feature for ensuring data hasn't been corrupted or tampered with during transmission. However, there's no evidence this addresses a specific security vulnerability or incident.
Diff
diff --git a/cli/latest/reference/s3api/write-get-object-response.md b/cli/latest/reference/s3api/write-get-object-response.md index 54959dbb1..f2667aef1 100644 --- a//cli/latest/reference/s3api/write-get-object-response.md +++ b//cli/latest/reference/s3api/write-get-object-response.md @@ -15 +15 @@ - * [AWS CLI 2.34.34 Command Reference](../../index.html) » + * [AWS CLI 2.34.37 Command Reference](../../index.html) » @@ -107,0 +108,5 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/s3-200 + [--checksum-sha512 <value>] + [--checksum-md5 <value>] + [--checksum-xxhash64 <value>] + [--checksum-xxhash3 <value>] + [--checksum-xxhash128 <value>] @@ -259,0 +265,20 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/s3-200 +`--checksum-sha512` (string) + +> This header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the Base64 encoded, 512-bit `SHA512` digest of the part. 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_ . + +`--checksum-md5` (string) + +> This header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the Base64 encoded, 128-bit `MD5` digest of the part. 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_ . + +`--checksum-xxhash64` (string) + +> This header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the Base64 encoded, 64-bit `XXHASH64` checksum of the part. 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_ . + +`--checksum-xxhash3` (string) + +> This header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the Base64 encoded, 64-bit `XXHASH3` checksum of the part. 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_ . + +`--checksum-xxhash128` (string) + +> This header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the Base64 encoded, 128-bit `XXHASH128` checksum of the part. 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_ . + @@ -557 +582 @@ None - * [AWS CLI 2.34.34 Command Reference](../../index.html) » + * [AWS CLI 2.34.37 Command Reference](../../index.html) »