Question 240:
User A is trying to perform the PutItem action on the Amazon DynamoDB table. Sysops Administrator has configured the following conditional IAM policy on the table.
{"Version": "2012-10-17",
"Statement": {
"Effect": "Deny",
"Action": "dynamodb:PutItem",
"Resource": "arn:aws:dynamodb:*:*:table/Thread",
"Condition": {
"ForAnyValue:StringEquals": {
"dynamodb:Attributes": [ "ID", "Tags" ]
}
}
}
}
Which of the following is a correct statement that describes the impact of the above policy on User A?
Answer options:
A.User A request is not denied by the policy when he tries to perform PutItem action in DynamoDB with either user ID or Tags attribute. B.User A request is not denied by the policy when he tries to perform PutItem action in DynamoDB with just the Tags attribute. C.User A request is not denied by the policy when he tries to perform PutItem action in DynamoDB with just the user ID attribute. D.User A request is not denied by the policy when he tries to perform the PutItem action in DynamoDB with just the Username attribute.