Skip to main content
Module

x/s3_lite_client/mod.ts>S3Client#listObjects

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

List objects in the bucket, optionally filtered by the given key prefix.

This returns a flat list; use listObjectsGrouped() for more advanced behavior.

Parameters

optional
options: { prefix?: string; bucketName?: string; maxResults?: number; pageSize?: number; } = [UNSUPPORTED]

Returns

AsyncGenerator<S3Object, void, undefined>