From 9796088f317c5e1b6382bd74f772100bf90f859f Mon Sep 17 00:00:00 2001 From: Jonathan Schimpf Date: Thu, 19 Feb 2026 08:56:12 -0500 Subject: [PATCH] Document valid s3 cp checksum option values --- awscli/customizations/s3/subcommands.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/awscli/customizations/s3/subcommands.py b/awscli/customizations/s3/subcommands.py index f77d7196e488..8981f70fba89 100644 --- a/awscli/customizations/s3/subcommands.py +++ b/awscli/customizations/s3/subcommands.py @@ -455,12 +455,13 @@ CHECKSUM_MODE = { 'name': 'checksum-mode', 'choices': ['ENABLED'], 'help_text': 'To retrieve the checksum, this mode must be enabled. If the object has a ' - 'checksum, it will be verified.' + 'checksum, it will be verified. Valid value: ENABLED.' } CHECKSUM_ALGORITHM = { 'name': 'checksum-algorithm', 'choices': ['CRC64NVME', 'CRC32', 'SHA256', 'SHA1', 'CRC32C'], - 'help_text': 'Indicates the algorithm used to create the checksum for the object.' + 'help_text': 'Indicates the algorithm used to create the checksum for the object. ' + 'Valid values: CRC64NVME, CRC32, SHA256, SHA1, CRC32C.' } BUCKET_NAME_PREFIX = {