0
Get object in bucket as text
One script reply has been approved by the moderators Verified
Created by admin 590 days ago Viewed 2869 times
0
Submitted by yassinsiouda74165 Deno
Verified 287 days ago
1
import { S3Client } from "https://deno.land/x/s3_lite_client@0.5.0/mod.ts";
2

3
type S3 = {
4
  endPoint: string;
5
  port: number;
6
  useSSL: boolean;
7
  pathStyle: boolean;
8
  bucket: string;
9
  accessKey: string;
10
  secretKey: string;
11
  region: string;
12
};
13
export async function main(s3: S3, path: string) {
14
  return (await new S3Client(s3).getObject(path)).text();
15
}
16

Other submissions