Class: Aws::DynamoDB::Types::DeleteRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::DeleteRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Note:
When making an API call, you may pass DeleteRequest data as a hash:
{
key: { # required
"AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
},
}
Represents a request to perform a ‘DeleteItem` operation on an item.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ Hash<String,Types::AttributeValue>
A map of attribute name to attribute values, representing the primary key of the item to delete.
Instance Attribute Details
#key ⇒ Hash<String,Types::AttributeValue>
A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table’s primary key attributes must be specified, and their data types must match those of the table’s key schema.
2801 2802 2803 2804 2805 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 2801 class DeleteRequest < Struct.new( :key) SENSITIVE = [] include Aws::Structure end |