'begins_with' - Begins with function checks to see if the sort key begins with a string value. Supported Types: String
String to check if the sort key value begins with.
Resolver to use when generate key condition expression.
'BETWEEN' - Between key condition compares if the sort key value is between two values.
Value to check if sort key is greater then and equal to.
Value to check if sort key is less then and equal to.
Resolver to use when generate key condition expression.
General compare key condition used by eq, lt, le, gt, and ge.
Compare operation to use: =, <, <=. > or >=.
Value to compare the sort key value against.
Resolver to use when generate key condition expression.
'=' - Equal condition compares if the sort key value is equal to a value.
Value to check if equal to.
Resolver to use when generate key condition expression.
'>=' - Greater then or equal to condition compares if the sort key value is greater then or equal to a value.
Value to check if greater then or equal to.
Resolver to use when generate key condition expression.
'>' - Greater then condition compares if the sort key value is greater then a value.
Value to check if greater then.
Resolver to use when generate key condition expression.
'<=' - Less then or equal to condition compares if the sort key value is less then or equal to a value.
Value to check if less then or equal to.
Resolver to use when generate key condition expression.
'<' - Less then condition compares if the sort key value is less then a value.
Value to check if less then.
Resolver to use when generate key condition expression.
Generated using TypeDoc
Set of helper methods to build KeyConditionExpressions used in DynamoDB query and scan operations. All of the condition based methods return a KeyCondition.Resolver function in the form of '( name: string, exp: KeyCondition.Expression, type?: T,): string' this allow key conditions to be composed together and even extended in a very simple way.
See Key Condition Expression for details on how each of the below key comparison operations and functions work.
examples/KeyCondition.ts, (imports: examples/Table.ts)