pub struct ConditionCheck {
pub condition_expression: String,
pub expression_attribute_names: Option<HashMap<String, String>>,
pub expression_attribute_values: Option<HashMap<String, AttributeValue>>,
pub key: HashMap<String, AttributeValue>,
pub return_values_on_condition_check_failure: Option<String>,
pub table_name: String,
}
Expand description
Represents a request to perform a check that an item exists or to check the condition of specific attributes of the item.
Fields§
§condition_expression: String
A condition that must be satisfied in order for a conditional update to succeed.
expression_attribute_names: Option<HashMap<String, String>>
One or more substitution tokens for attribute names in an expression.
expression_attribute_values: Option<HashMap<String, AttributeValue>>
One or more values that can be substituted in an expression.
key: HashMap<String, AttributeValue>
The primary key of the item to be checked. Each element consists of an attribute name and a value for that attribute.
return_values_on_condition_check_failure: Option<String>
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the ConditionCheck
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
table_name: String
Name of the table for the check item request.
Trait Implementations§
Source§impl Clone for ConditionCheck
impl Clone for ConditionCheck
Source§fn clone(&self) -> ConditionCheck
fn clone(&self) -> ConditionCheck
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConditionCheck
impl Debug for ConditionCheck
Source§impl Default for ConditionCheck
impl Default for ConditionCheck
Source§fn default() -> ConditionCheck
fn default() -> ConditionCheck
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConditionCheck
impl PartialEq for ConditionCheck
Source§impl Serialize for ConditionCheck
impl Serialize for ConditionCheck
impl StructuralPartialEq for ConditionCheck
Auto Trait Implementations§
impl Freeze for ConditionCheck
impl RefUnwindSafe for ConditionCheck
impl Send for ConditionCheck
impl Sync for ConditionCheck
impl Unpin for ConditionCheck
impl UnwindSafe for ConditionCheck
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more