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
AND
condition. - Attribute
Exists - The DynamoDB
attribute_exists
function. True if the item contains the attribute in a specifiedPath
. - Attribute
NotExists - The DynamoDB
attribute_not_exists
function. True if the item does not contain the attribute in a specifiedPath
. - Begins
With - The DynamoDB
begins_with
function. True if the attribute specified by thePath
begins with a particular substring. - Between
- Represents the DynamoDB
BETWEEN
operator. - Comparison
- Represents a DynamoDB comparison operation for use in a
Condition
. - Contains
- The DynamoDB
contains
function. True if the attribute specified byPath
is one of the following: - In
- Represents a DynamoDB
IN
condition. True if the value from theOperand
(theop
parameter) is equal to any value in the list (theitems
parameter). - Not
- Represents a DynamoDB logical
NOT
condition. - Or
- Represents a DynamoDB logical
OR
condition. - 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
Path
is greater than another. - greater_
than_ or_ equal - Check if a value or
Path
is greater than or equal to another. - less_
than - Check if a value or
Path
is less than another. - less_
than_ or_ equal - Check if a value or
Path
is less than or equal to another. - not_
equal - Check if the two values or paths are not equal.