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

x/s3_lite_client/mod.ts>S3Client#getObject

A lightweight but powerful S3 client for Deno
Latest
method S3Client.prototype.getObject
import { S3Client } from "https://deno.land/x/s3_lite_client@0.7.0/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: { metadata?: ObjectMetadata; bucketName?: string; versionId?: string; responseParams?: ResponseOverrideParams; }