You are creating a DynamoDB table to store all movies that have been released since 1938. Your application will allow users to search by movie title and see the details of that film. Given the sample below showing the movie data that you will be importing, what is the best set of keys to apply to this table?'''json{ 'title': 'The Avengers', 'year': 2012, 'cast': ['Mark Ruffalo', 'Robert Downey, Jr.'], 'genres': ['Action']}

🎲 Try a Random Question  |  Total Questions in Quiz: 84  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Amazon Web Services (AWS) Quiz — practice the complete quiz, review flashcards, or try a random question.

AWS MCQs For LinkedIn Skill Assessments.


You are creating a DynamoDB table to store all movies that have been released since 1938. Your application will allow users to search by movie title and see the details of that film. Given the sample below showing the movie data that you will be importing, what is the best set of keys to apply to this table?<br>'''json<br>{<br> 'title': 'The Avengers',<br> 'year': 2012,<br> 'cast': ['Mark Ruffalo', 'Robert Downey, Jr.'],<br> 'genres': ['Action']<br>}<br>