UNPKG

s3-bucket-stream

Version:

Readable stream of the Body of every object in an S3 bucket.

10 lines 228 B
export default class S3Object { public Key: string public Bucket: String public Body: string constructor(Key: string, Bucket: string, Body: string) { this.Key = Key this.Bucket = Bucket this.Body = Body } }