Class: Aws::DynamoDB::Types::Delete
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::Delete
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Represents a request to perform a DeleteItem
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition_expression ⇒ String
A condition that must be satisfied in order for a conditional delete to succeed.
-
#expression_attribute_names ⇒ Hash<String,String>
One or more substitution tokens for attribute names in an expression.
-
#expression_attribute_values ⇒ Hash<String,Types::AttributeValue>
One or more values that can be substituted in an expression.
-
#key ⇒ Hash<String,Types::AttributeValue>
The primary key of the item to be deleted.
-
#return_values_on_condition_check_failure ⇒ String
Use
ReturnValuesOnConditionCheckFailure
to get the item attributes if theDelete
condition fails. -
#table_name ⇒ String
Name of the table in which the item to be deleted resides.
Instance Attribute Details
#condition_expression ⇒ String
A condition that must be satisfied in order for a conditional delete to succeed.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |
#expression_attribute_names ⇒ Hash<String,String>
One or more substitution tokens for attribute names in an expression.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |
#expression_attribute_values ⇒ Hash<String,Types::AttributeValue>
One or more values that can be substituted in an expression.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |
#key ⇒ Hash<String,Types::AttributeValue>
The primary key of the item to be deleted. Each element consists of an attribute name and a value for that attribute.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |
#return_values_on_condition_check_failure ⇒ String
Use ReturnValuesOnConditionCheckFailure
to get the item attributes
if the Delete
condition fails. For
ReturnValuesOnConditionCheckFailure
, the valid values are: NONE
and ALL_OLD.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |
#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.
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2191 class Delete < Struct.new( :key, :table_name, :condition_expression, :expression_attribute_names, :expression_attribute_values, :return_values_on_condition_check_failure) SENSITIVE = [] include Aws::Structure end |