0

S3 File Explorer

by
Published Apr 10, 2023

Fetch, preview, upload and delete files from your AWS S3 bucket.

App s3 Verified

The app

Static preview only: No backend
This is a static preview of the app and there is no backend. As such, the interactivity requiring script execution is non functional. To see the fully functional app, edit/run it in Windmill by clicking the button above.

Scripts used

import { Resource } from "https://deno.land/x/[email protected]/mod.ts";
import { S3Client } from "https://deno.land/x/[email protected]/mod.ts";

export async function main(s3: Resource<"s3">, object_name: string) {
  const s3client = new S3Client(s3);
  return await s3client.deleteObject(object_name)
}