views:

174

answers:

1

If there is a button that I have read/write access on from my AWS account, is there any way to get the CanonicalUser id of the owner?

Reading the ACL Policy seems to be impossible unless you are the owner : /.

+2  A: 

You don't have to be able to read ACL to figure out user id. Simple GET on the bucket in question will provide that info.

http://docs.amazonwebservices.com/AmazonS3/2006-03-01/index.html?RESTBucketGET.html

Dick Lebavo
Wow, I totally overlooked this. Thank you so much! This really helps!
felixge