Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/s3_lite_client/client.ts>Client#makeRequest

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

Make a single request to S3

Parameters

unnamed 0: { method:
| "POST"
| "GET"
| "PUT"
| "DELETE"
| string
; headers?: Headers; query?: string | Record<string, string>; objectName: string; bucketName?: string; statusCode?: number; payload?: Uint8Array | string; returnBody?: boolean; }