Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
How should a developer configure a data store to manage movie information, including title, release year, genre, and variable cast and crew details, while supporting queries by specific title and year, all titles, and genre?
A
Using Amazon DynamoDB, set up a table with a composite primary key of title and release year, and add a global secondary index on genre and title.
B
Using Amazon DynamoDB, set up a table with a composite primary key of genre and release year, and add a global secondary index on title.
C
Utilize an Amazon RDS table structured with title as the primary key and columns for release year and genre.
D
Utilize an Amazon RDS table with title as the primary key, storing all additional details in a JSON column.