Class for putting and/or deleting a batch of items in a single DynamoDB table.
            
 Declaration Syntax
 Declaration Syntax| C# | 
public class DocumentBatchWrite
 Members
 Members| All Members | Constructors | Methods | |||
| Icon | Member | Description | 
|---|---|---|
|  | DocumentBatchWrite(Table) | 
            Constructs a DocumentBatchWrite instance for a specific table.
             | 
|  | AddDocumentToPut(Document) | 
            Add a single Document to put.
             | 
|  | AddItemToDelete(Document) | 
            Add a single item to delete, identified by a Document object.
             | 
|  | AddKeyToDelete(Primitive) | 
            Add a single item to delete, identified by its hash primary key.
             | 
|  | AddKeyToDelete(Primitive, Primitive) | 
            Add a single item to delete, identified by its hash-and-range primary key.
             | 
|  | AddKeyToDelete(IDictionary<(Of <<'(String, DynamoDBEntry>)>>)) | 
            Add a single item to delete, identified by its key.
             | 
|  | BeginExecute(AsyncCallback, Object) | 
            Initiates the asynchronous execution of the Execute operation.
             | 
|  | Combine(DocumentBatchWrite) | 
            Creates a MultiTableDocumentBatchWrite object that is a combination
            of the current DocumentBatchWrite and the specified DocumentBatchWrite.
             | 
|  | EndExecute(IAsyncResult) | 
            Finishes the asynchronous execution of the Execute operation.
             | 
|  | Equals(Object) | (Inherited from Object.) | 
|  | Execute()()()() | 
            Executes a server call to batch-put/delete the item specified.
            
            If more than 25 put/delete operations are specified, calls of up to 25
            put/delete items will be made until all items are processed.
             | 
|  | GetHashCode()()()() | Serves as a hash function for a particular type. (Inherited from Object.) | 
|  | GetType()()()() | Gets the type of the current instance.(Inherited from Object.) | 
|  | ToString()()()() | Returns a string that represents the current object.(Inherited from Object.) | 
 Inheritance Hierarchy
 Inheritance Hierarchy| Object | |
|  | DocumentBatchWrite |