AWS - DynamoDB
What will be the result of this DynamoDB scan on a table with items having attribute "Status" set to "Active" or "Inactive"?
{
"TableName": "Users",
"FilterExpression": "Status = :statusVal",
"ExpressionAttributeValues": {":statusVal": {"S": "Active"}}
}