Skip to main content
Module

x/s3_lite_client/mod.ts>S3Client#getObject

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

Get an object.

Returns a standard HTTP Response object, which has many ways of consuming the response including .text(), .json(), .body (ReadableStream), .arrayBuffer(), and .blob().

Parameters

objectName: string
optional
options: { bucketName?: string; versionId?: string; responseParams?: ResponseOverrideParams; }