My code is
AWS.config.update({accessKeyId:'my_access_key',secretAccessKey:'my_key'});
consts3 =new AWS.S3();
const option ={
Bucket:'bucket_name',
key:'key'
};
res.setHeader('Content-disposition','attachment; filename=abc.mp3');
const filestream = createReadStream('hme/comp/documents/abc.mp3);
filestream.pipe(res);
I want to download file from AWS s3 bucket in nestjs