We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4d2b0 commit ae8bf5cCopy full SHA for ae8bf5c
.changeset/real-teachers-sort.md
@@ -0,0 +1,5 @@
1
+---
2
+"@smithy/signature-v4": major
3
4
+
5
+Make sha256 required parameter for SigV4 constructor
packages/signature-v4/src/SignatureV4.ts
@@ -72,7 +72,7 @@ export interface SignatureV4Init {
72
* A constructor function for a hash object that will calculate SHA-256 HMAC
73
* checksums.
74
*/
75
- sha256?: ChecksumConstructor | HashConstructor;
+ sha256: ChecksumConstructor | HashConstructor;
76
77
/**
78
* Whether to uri-escape the request URI path as part of computing the
0 commit comments