Reputation: 163
I'm developing web application. I want to add the ability for my clients to upload files (pdf, images, spreadsheets etc). Which solution for storing files is better - S3 or block storage? S3 seems to be much cheaper. Is it convenient to store uploads on S3 and work with them programmatically (upload, download)? Or this type of storage is for some other use cases? Each client should have access only to their files.
Upvotes: 0
Views: 82
Reputation: 971
ListAllBuckets
and allow access to <bucketname>/{aws:username}
folders, where {aws:username}
is a variable in IAM policy.Rest is up to you on how to write the IAM policies.
Upvotes: 1