Expand description
Types related to conditions for DynamoDB condition and filter expressions.
Re-exports§
pub use attribute_type::AttributeType;
Modules§
Structs§
- And
- Represents a DynamoDB logical
ANDcondition. - Attribute
Exists - The DynamoDB
attribute_existsfunction. True if the item contains the attribute in a specifiedPath. - Attribute
NotExists - The DynamoDB
attribute_not_existsfunction. True if the item does not contain the attribute in a specifiedPath. - Begins
With - The DynamoDB
begins_withfunction. True if the attribute specified by thePathbegins with a particular substring. - Between
- Represents the DynamoDB
BETWEENoperator. - Comparison
- Represents a DynamoDB comparison operation for use in a
Condition. - Contains
- The DynamoDB
containsfunction. True if the attribute specified byPathis one of the following: - In
- Represents a DynamoDB
INcondition. True if the value from theOperand(theopparameter) is equal to any value in the list (theitemsparameter). - Not
- Represents a DynamoDB logical
NOTcondition. - Or
- Represents a DynamoDB logical
ORcondition. - Parenthetical
- Wraps a condition in parentheses.
Enums§
- Comparator
- DynamoDB comparison operators
- Condition
- Represents a logical condition in a DynamoDB expression.
Functions§
- equal
- Check if the two values or paths are equal.
- greater_
than - Check if a value or
Pathis greater than another. - greater_
than_ or_ equal - Check if a value or
Pathis greater than or equal to another. - less_
than - Check if a value or
Pathis less than another. - less_
than_ or_ equal - Check if a value or
Pathis less than or equal to another. - not_
equal - Check if the two values or paths are not equal.