Struct aws_sdk_dynamodb::types::Delete
source · #[non_exhaustive]pub struct Delete {
pub key: HashMap<String, AttributeValue>,
pub table_name: String,
pub condition_expression: Option<String>,
pub expression_attribute_names: Option<HashMap<String, String>>,
pub expression_attribute_values: Option<HashMap<String, AttributeValue>>,
pub return_values_on_condition_check_failure: Option<ReturnValuesOnConditionCheckFailure>,
}
Expand description
Represents a request to perform a DeleteItem
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key: HashMap<String, AttributeValue>
The primary key of the item to be deleted. Each element consists of an attribute name and a value for that attribute.
table_name: String
Name of the table in which the item to be deleted resides. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
condition_expression: Option<String>
A condition that must be satisfied in order for a conditional delete 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.
return_values_on_condition_check_failure: Option<ReturnValuesOnConditionCheckFailure>
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Delete
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
Implementations§
source§impl Delete
impl Delete
sourcepub fn key(&self) -> &HashMap<String, AttributeValue>
pub fn key(&self) -> &HashMap<String, AttributeValue>
The primary key of the item to be deleted. Each element consists of an attribute name and a value for that attribute.
sourcepub fn table_name(&self) -> &str
pub fn table_name(&self) -> &str
Name of the table in which the item to be deleted resides. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
sourcepub fn condition_expression(&self) -> Option<&str>
pub fn condition_expression(&self) -> Option<&str>
A condition that must be satisfied in order for a conditional delete to succeed.
sourcepub fn expression_attribute_names(&self) -> Option<&HashMap<String, String>>
pub fn expression_attribute_names(&self) -> Option<&HashMap<String, String>>
One or more substitution tokens for attribute names in an expression.
sourcepub fn expression_attribute_values(
&self
) -> Option<&HashMap<String, AttributeValue>>
pub fn expression_attribute_values( &self ) -> Option<&HashMap<String, AttributeValue>>
One or more values that can be substituted in an expression.
sourcepub fn return_values_on_condition_check_failure(
&self
) -> Option<&ReturnValuesOnConditionCheckFailure>
pub fn return_values_on_condition_check_failure( &self ) -> Option<&ReturnValuesOnConditionCheckFailure>
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Delete
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.