{ "Statement" : { "Effect": "Allow", "Principle": { ... }, "Action": [ "ec2:*" ], "Resource": [ "*" ], "Condition": { ... } } } |
|
{ "Version" : "2012-10-17" "Statement" : [ { "Sid": "DenyAllButProductManagers", "Effect": "Deny". "Principal" : { "AWS" : "*" }, "Action" : [ "s3:PutObject" ], "Condition" : { "StringNotEquals" : { "aws:PrincipalTag/job-title": "Product-Manager" } } } ] } |