tags:

views:

16

answers:

1

If I have objects stored in the Amazon S3, is it possible to transfer ownership of an object to another user?

+1  A: 

From http://docs.amazonwebservices.com/AmazonS3/index.html?S3_ACLs.html

Every bucket and object in Amazon S3 has an owner, the user that created the bucket or object. The owner of a bucket or object cannot be changed. However, if the object is overwritten by another user (deleted and rewritten), the new object will have a new owner.

So, no, but you could give write access via the ACL to another user who could read it, delete it and write it back, that user would become the owner.

p7r