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 a992c3b commit cf9ef08Copy full SHA for cf9ef08
packages/s3-request-presigner/README.md
@@ -134,17 +134,6 @@ const command = new PutObjectCommand({
134
ContentType: contentType,
135
});
136
137
-// Set of non x-amz-* you wish to have signed
138
-const signableHeaders = new Set(["content-type"]);
139
-
140
-const presigned = getSignedUrl(s3Client, command, {
141
- signableHeaders,
142
- expiresIn: expiration,
143
- // Set of all x-amz-* headers you wish to have signed
144
- unhoistableHeaders: new Set(["x-amz-checksum-sha256"]),
145
- ContentType: contentType,
146
-});
147
148
const presigned = getSignedUrl(s3Client, command, {
149
signableHeaders: new Set(["content-type"]),
150
expiresIn: expiration,
0 commit comments