Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/s3_lite_client/signing.ts>presignV4

A lightweight but powerful S3 client for Deno
Go to Latest
function presignV4
import { presignV4 } from "https://deno.land/x/s3_lite_client@0.6.1/signing.ts";

Generate a pre-signed URL

Parameters

request: { protocol: "http:" | "https:"; headers: Headers; method: string; path: string; accessKey: string; secretKey: string; region: string; date: Date; expirySeconds: number; }

Returns

Promise<string>