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?