The Query operation uses 'aws dynamodb query' with key-condition-expression and expression-attribute-values.
Step 2: Check other options
Scan reads the entire table (and does not support --key-condition-expression), get-item retrieves a single item by exact key, update-item modifies items, so only the Query syntax is correct.