Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix httpChecksum algorithm list in spec #2394

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/source-2.0/aws/aws-core.rst
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ The ``httpChecksum`` trait is a structure that contains the following members:
request checksum behavior. The input member MUST target a string shape
marked with the :ref:`enum-trait`. Each value in the enum represents a
supported checksum algorithm. Algorithms MUST be one of the following
supported values: "CRC32C", "CRC32", "SHA1", or "SHA256".
supported values: "CRC64NVME", "CRC32C", "CRC32", "SHA1", or "SHA256".
* - requestChecksumRequired
- ``boolean``
- Indicates an operation requires a checksum in its HTTP request. By
Expand All @@ -953,7 +953,8 @@ The ``httpChecksum`` trait is a structure that contains the following members:
- ``set<string>``
- Defines the checksum algorithms clients SHOULD look for when validating
checksums returned in the HTTP response. Each algorithm must be one of
the following supported values: "CRC32C", "CRC32", "SHA1", or "SHA256".
the following supported values: "CRC64NVME", "CRC32C", "CRC32", "SHA1",
or "SHA256".

The ``httpChecksum`` trait MUST define at least one of the request checksumming
behavior, by setting the ``requestAlgorithmMember`` or
Expand Down
Loading