Complete the code to define an expression attribute value for a DynamoDB query.
expression_attribute_values = {':val': [1]The expression attribute value must be a string enclosed in double quotes to be valid in DynamoDB queries.
Complete the code to set a numeric expression attribute value for a DynamoDB update.
expression_attribute_values = {':num': [1]Numeric values in expression attribute values should be provided as numbers without quotes.
Fix the error in the expression attribute values dictionary to correctly represent a boolean value.
expression_attribute_values = {':active': [1]Boolean values in DynamoDB expression attribute values must be Python booleans without quotes.
Fill both blanks to create expression attribute values for a string and a number.
expression_attribute_values = {':name': [1], ':age': [2]The string value must be in double quotes, and the number should be a plain number without quotes.
Fill all three blanks to define expression attribute values for a string, a boolean, and a number.
expression_attribute_values = {':user': [1], ':isAdmin': [2], ':score': [3]Strings use double quotes, booleans use Python literals without quotes, and numbers are plain numbers.