You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It allows filtering with dynamic parameters but what if the dynamic parameter passed is Non-String?
@ExpressionAttribute has 3 fields key, value and parameterName and all fields are of type String. Suppose I want to Query for Price >= 1000 where Price field in DynamoDB table is of Type Number. In cases of Boolean and Number fields how to filter the output.
AWS CLI has option to specify the type
{
":fn":{"S":"Amazon DynamoDB"},
":sub":{"S":"DynamoDB Thread 1"},
":num":{"N":"3"}
}
S for String, N for Number.
and whether filtering is supported for Collections like Price IN (100, 200).
This allows people the ability to use filter expressions
The text was updated successfully, but these errors were encountered: