Guest User

Untitled

a guest
Mar 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {
  2. "Version": "2012-10-17",
  3. "Statement": [
  4. {
  5. "Effect": "Allow",
  6. "Action": ["s3:ListBucket"],
  7. "Resource": ["arn:aws:s3:::bucketname"]
  8. },
  9. {
  10. "Effect": "Allow",
  11. "Action": [
  12. "s3:PutObject",
  13. "s3:GetObject",
  14. "s3:DeleteObject"
  15. ],
  16. "Resource": ["arn:aws:s3:::bucketname/*"]
  17. }
  18. ]
  19. }
Advertisement
Add Comment
Please, Sign In to add comment