Question 63:
A CustomerOrders DynamoDB table has following items.
CustomerName (PK)
Order Item
Cost
Albert Einstein
Candle
15
Albert Einstein
Spaceship Toy
50
Albert Einstein
Hair Comb
5
Isaac Newton
Bag of Apples
25
Following operation is executed:
aws dynamodb query \
--table-name CustomerOrders \
--key-condition-expression " CustomerName = :name " \
--filter-expression "Cost > :amount" \
--expression-attribute-values `{
":name": { "S": "Albert Einstein" },
":amount": { "N": "20" }
}`
How many items are read by the DynamoDB query operation?
Answer options:
A.1 B.2 C.3 D.4