ExamQuestions.com

Register
Login
AWS Certified Solutions Architect Professional Exam Questions

Amazon

AWS Certified Solutions Architect Professional

241 / 465

Question 241:

You are using DynamoDB to store data in your application. You create a table named "Users" with "UserID" as the Primary Key. However, you envision that, in some cases, you might need to query the table by "UserName" which cannot be set as the primary key. What changes would you make to this table to be able to query using UserName?

Answer options:

A.Create a second table that contains all the information, but make UserName the primary key.
B.Create a hash and change the primary key.
C.Create a Global secondary index.
D.Partition the table using UserName rather than UserID.