Class PutRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents a request to perform a
PutItem
operation on an item.
public class PutRequest
- Inheritance
-
PutRequest
- Inherited Members
Constructors
PutRequest()
Empty constructor used to set properties independently even when a simple constructor is available
public PutRequest()
PutRequest(Dictionary<string, AttributeValue>)
Instantiates PutRequest with the parameterized properties
public PutRequest(Dictionary<string, AttributeValue> item)
Parameters
item
Dictionary<string, AttributeValue>A map of attribute name to attribute values, representing the primary key of an item to be processed by
. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.PutItem
Properties
Item
Gets and sets the property Item.
A map of attribute name to attribute values, representing the primary key of an item to be processed by
PutItem
. All of the table's primary key attributes
must be specified, and their data types must match those of the table's key schema.
If any attributes are present in the item that are part of an index key schema for
the table, their types must match the index key schema.
public Dictionary<string, AttributeValue> Item { get; set; }