DVA-C02 Security • Set 20
DVA-C02 Security Practice Test 20 — 15 questions with explanations. Free, no signup.
Given the IAM policy above, what is the effective permission for an IAM user?
Refer to the exhibit.
IAM Policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my-bucket",
"arn:aws:s3:::my-bucket/*"
]
},
{
"Effect": "Deny",
"Action": "s3:DeleteObject",
"Resource": "arn:aws:s3:::my-bucket/*"
}
]
}