Posted by: Pdfprep
Post Date: December 24, 2020
A game stores user game data in an Amazon DynamoDB table. Individual users should not have access to other users’ game data.
How can this be accomplished?
A . Encrypt the game data with individual user keys.
B . Restrict access to specific items based on certain primary key values.
C . Stage data in SQS queues to inject metadata before accessing DynamoD
E . Read records from DynamoDB and discard irrelevant data client-side.
Answer: B
Explanation:
Reference: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/specifyingconditions.html
Leave a Reply