Reputation: 267320
Can you put permissions on files that are uploaded to S3?
Or if someone knows the guild/url to the file they can access it publicly?
If yes, what kind of permissions can we set?
Upvotes: 3
Views: 2226
Reputation: 367
Not passwords, but you can create links that expire on at a certain time: http://docs.amazonwebservices.com/AmazonS3/2006-03-01/index.html?RESTAuthentication.html
Upvotes: 1
Reputation: 13862
Permissions are implemented with a key mechanism. You can make content readable for everyone (no password) or require a password. You grant upload privileges by generating a keyed URI which you can limit to a maximum bandwidth.
Amazon documentation on authentication and access control
As dcaunt states, query string authentication requires an expiration date.
Upvotes: 6
Reputation: 58379
I believe you can also generate 'passwords' that are only valid for a certain period of time
Upvotes: 0