github.com/minio/console@v1.4.1/web-app/tests/policies/bucketWritePrefixOnlyPolicy.json (about) 1 { 2 "Version": "2012-10-17", 3 "Statement": [ 4 { 5 "Action": ["s3:ListBucket", "s3:GetBucketLocation"], 6 "Effect": "Allow", 7 "Resource": ["arn:aws:s3:::testcafe"] 8 }, 9 { 10 "Action": ["s3:ListBucket", "s3:GetObject"], 11 "Effect": "Allow", 12 "Resource": ["arn:aws:s3:::testcafe/*"] 13 }, 14 { 15 "Action": [ 16 "s3:ListBucket", 17 "s3:GetObject", 18 "s3:PutObject", 19 "s3:DeleteObject" 20 ], 21 "Effect": "Allow", 22 "Resource": ["arn:aws:s3:::testcafe/write/*"] 23 } 24 ] 25 }