Skip to main content
Module

x/s3_lite_client/mod.ts>S3Client#getPartialObject

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

Stream a partial object, starting from the specified offset in bytes, up to the specified length in bytes. A length of zero will return the rest of the object from the specified offset. Pass a version UUID as "versionId" to download a specific version.

Returns a standard HTTP Response object.

Parameters

objectName: string
unnamed 1: { offset: number; length: number; bucketName?: string; versionId?: string; responseParams?: ResponseOverrideParams; }