DBS-C01 • Practice Test 16
Free DBS-C01 practice test — 15 questions with explanations. Set 16. No signup required.
An application using the above IAM policy is trying to perform a Scan operation on the 'Orders' table. What will happen?
Refer to the exhibit.
IAM policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:UpdateItem",
"dynamodb:DeleteItem",
"dynamodb:Query"
],
"Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/Orders"
},
{
"Effect": "Deny",
"Action": "dynamodb:Scan",
"Resource": "*"
}
]
}