Class DeleteRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents a request to perform a
DeleteItem
operation on an item.
public class DeleteRequest
- Inheritance
-
DeleteRequest
- Inherited Members
Constructors
DeleteRequest()
Empty constructor used to set properties independently even when a simple constructor is available
public DeleteRequest()
DeleteRequest(Dictionary<string, AttributeValue>)
Instantiates DeleteRequest with the parameterized properties
public DeleteRequest(Dictionary<string, AttributeValue> key)
Parameters
key
Dictionary<string, 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.
Properties
Key
Gets and sets the property Key.
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.
public Dictionary<string, AttributeValue> Key { get; set; }