I'm uploading file to S3 using aws-sdk package:
fs.readFile(sourceFile, function (err, data) { if (err) { throw err; } s3.client.putObject({ Bucket: bucketName, Key: 'Folder/image.jpg', Body: data }, function (res) { console.log('Successfully uploaded file.'); }) });
I I need to make uploaded file to be downloadable via cloudfront, if I asume right, I need to set permissions on file: Everyone Open/Download, Folder2 should be made public (via menu Make Public). So 2 questions:
1) How to set\modify permissions on uploaded file\folder?
2) How make Folder public using AWS SDK for node.js.
To access Amazon Simple Storage Service, create an AWS. S3 service object. Call the listBuckets method of the Amazon S3 service object to retrieve a list of your buckets. The data parameter of the callback function has a Buckets property containing an array of maps to represent the buckets.
To upload folders and files to an S3 bucketSign in to the AWS Management Console and open the Amazon S3 console at https://console.aws.amazon.com/s3/ . In the Buckets list, choose the name of the bucket that you want to upload your folders or files to. Choose Upload.
Thanks! S3 isn't a Linux file system. It won't retain any Linux permissions because they don't apply to S3.
Found it http://docs.aws.amazon.com/AmazonS3/latest/dev/ACLOverview.html#CannedACL
need to add option in putObject
or upload
:
ACL:'public-read'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With