Open
Description
Describe the issue
In the SDK docs https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/dynamodb/command/PutItemCommand/
It shows: Comparison operators: = | | | | = | = | BETWEEN | IN
In the Developer Guide https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.OperatorsAndFunctions.html#Expressions.OperatorsAndFunctions.Comparators
It shows:
a = b – True if a is equal to b.
a <> b – True if a is not equal to b.
a < b – True if a is less than b.
a <= b – True if a is less than or equal to b.
a > b – True if a is greater than b.
a >= b – True if a is greater than or equal to b.
What I expect to see in the SDK docs is Comparison operators: = | <> | <= | >= | < | > | BETWEEN | IN
Links
https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/dynamodb/command/PutItemCommand/