Question
Spaces copyObject Content-Disposition not set
Hi,
When I use the AWS S3 SDK copyObject with the ContentDisposition set, it doesn’t set it on the copied object. Is that a known issue or am I missing something?
const s3 = new AWS.S3(s3Config);
s3.copyObject({
Bucket: 'test',
CopySource: 'test/test',
Key: 'test2',
ACL: 'public-read',
ContentDisposition: 'attachment; filename="test.pdf"',
}, (err) => {
console.error(err);
});
Thanks,