Class for putting and/or deleting a batch of items in multiple DynamoDB tables.
Exemplo n.º 1
0
 internal void ExecuteHelper(bool isAsync)
 {
     MultiTableDocumentBatchWrite superBatch = new MultiTableDocumentBatchWrite();
     foreach (var batch in allBatches)
     {
         superBatch.AddBatch(batch.DocumentBatch);
     }
     superBatch.ExecuteHelper(isAsync);
 }