Class for retrieving a batch of Documents from a single DynamoDB table.

Namespace: Amazon.DynamoDB.DocumentModel
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DocumentBatchGet
Public Class DocumentBatchGet
public ref class DocumentBatchGet

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DocumentBatchGet(Table)
Constructs a DocumentBatchGet instance for a specific table.
AddKey(Primitive)
Add a single item to get, identified by its hash primary key.
AddKey(Primitive, Primitive)
Add a single item to get, identified by its hash-and-range primary key.
AttributesToGet
List of attributes to retrieve.
BeginExecute(AsyncCallback, Object)
Initiates the asynchronous execution of the Execute operation.
Combine(DocumentBatchGet)
Creates a MultiTableDocumentBatchGet object that is a combination of the current DocumentBatchGet and the specified DocumentBatchGet.
EndExecute(IAsyncResult)
Finishes the asynchronous execution of the Execute operation.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Execute()()()()
Executes a server call to batch-get the documents requested. Populates Results with the retrieved items.
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
Results
List of results retrieved from DynamoDB. Populated after Execute is called.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)

Inheritance Hierarchy

System..::..Object
  Amazon.DynamoDB.DocumentModel..::..DocumentBatchGet

See Also