in recording/utils/upload.js [16:21]
constructor(bucket, key) {
this.bucket = bucket;
this.key = key;
this.s3Uploader = new AWS.S3({ params: { Bucket: bucket, Key: key } });
console.log(`[upload process] constructed a S3 object with bucket: ${this.bucket}, key: ${this.key}`);
}