Module

x/s3_lite_client/client.ts>ClientOptions

A lightweight but powerful S3 client for Deno
Latest
interface ClientOptions
import { type ClientOptions } from "https://dotland.deno.dev/x/s3_lite_client@0.7.0/client.ts";

Properties

endPoint: string

Hostname of the endpoint. Not a URL, just the hostname with no protocol or port.

optional
accessKey: string
optional
secretKey: string
optional
sessionToken: string
optional
useSSL: boolean | undefined
optional
port: number | undefined
optional
bucket: string

Default bucket name, if not specified on individual requests

region: string

Region to use, e.g. "us-east-1"

optional
pathStyle: boolean | undefined

Use path-style requests, e.g. https://endpoint/bucket/object-key instead of https://bucket/object-key (default: true)