Web Console S3 메뉴에 접근하였을 때, 전체 Bucket 리스트를 확인할수 있지만 test-bucket 외에는 하위에 Object들을 확인할수 없게 됩니다.
참고
http://docs.aws.amazon.com/IAM/latest/UserGuide/ExampleIAMPolicies.html
설정 예
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "s3:ListAllMyBuckets", "Resource": "arn:aws:s3:::*" }, { "Effect": "Allow", "Action": "s3:*", "Resource": [ "arn:aws:s3:::test-bucket", "arn:aws:s3:::test-bucket/*" ] } ] }