Question 370:
Your manager has assigned you a task to write an API that will extract data from a DynamoDB table with 30 columns and more than 10,000 rows of open data. Not all the columns are relevant for your use-case. Hence your manager has asked you to filter out only 6 columns out of all and store them in your in-house data warehouse tool. How can you achieve this?
Answer options:
A.Use DataFilter operation while performing Scan operation. B.Use ProjectionExpression operation while performing Query operation. C.Use ProjectionExpression operation while performing Scan operation. D.Use ColumnProjection operation while performing Query operation.