Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a bucket, s3://some.bucket And this bucket has a few objects inside it broken up into the following paths: s3://some.bucket/first/... s3://some.bucket/second/...

Finally, I have two users a and b. I would like a to only be able to see things in first, and b to only see things in second such that neither user knows about the other's bucket.

If I try to create a bucket policy giving listbucket on s3://some.bucket/first/* to a, I get the error: Action does not apply to any resource(s) in statement - Action "s3:ListBucket"

After reading other threads it looks like this is because you can't provide ListBucket on objects w/o providing them on the bucket itself: I need an Amazon S3 user with full access to a single bucket

So does this mean my scenario is impossible?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.