DBS-C01 • Practice Test 50
Free DBS-C01 practice test — 15 questions with explanations. Set 50. No signup required.
A database specialist created the above IAM policy for a user. When the user attempts to delete an item from the Orders table, what happens?
Refer to the exhibit.
IAM Policy JSON:
```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:UpdateItem",
"dynamodb:DeleteItem"
],
"Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/Orders"
},
{
"Effect": "Deny",
"Action": "dynamodb:DeleteItem",
"Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/Orders"
}
]
}
```