Skip to main content
Module

x/s3_lite_client/mod.ts>S3Client#makeRequest

A lightweight but powerful S3 client for Deno
Go to Latest
method S3Client.prototype.makeRequest
import { S3Client } from "https://deno.land/x/s3_lite_client@0.6.1/mod.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; }