@@ -269,7 +269,7 @@ default BatchWriteResult batchWriteItem(Consumer<BatchWriteItemEnhancedRequest.B
269
269
270
270
/**
271
271
* Retrieves multiple items from one or more tables in a single atomic transaction. TransactGetItem is a composite operation
272
- * where the request contains a set of up to 25 get requests, each containing a table reference and a
272
+ * where the request contains a set of get requests, each containing a table reference and a
273
273
* {@link GetItemEnhancedRequest}. The list of results correspond to the ordering of the request definitions; for example
274
274
* the third addGetItem() call on the request builder will match the third result (index 2) of the result.
275
275
* <p>
@@ -297,6 +297,7 @@ default BatchWriteResult batchWriteItem(Consumer<BatchWriteItemEnhancedRequest.B
297
297
* MyItem item = results.get(3).getItem(secondItemTable);
298
298
* }
299
299
* </pre>
300
+ * See {@link DynamoDbClient#transactGetItems(Consumer)} to learn more about {@code TransactGetItems}.
300
301
*
301
302
* @param request A {@link TransactGetItemsEnhancedRequest} containing keys with table references.
302
303
* @return a list of {@link Document} with the results.
@@ -307,7 +308,7 @@ default List<Document> transactGetItems(TransactGetItemsEnhancedRequest request)
307
308
308
309
/**
309
310
* Retrieves multiple items from one or more tables in a single atomic transaction. TransactGetItem is a composite operation
310
- * where the request contains a set of up to 25 get requests, each containing a table reference and a
311
+ * where the request contains a set of get requests, each containing a table reference and a
311
312
* {@link GetItemEnhancedRequest}. The list of results correspond to the ordering of the request definitions; for example
312
313
* the third addGetItem() call on the request builder will match the third result (index 2) of the result.
313
314
* <p>
@@ -336,17 +337,20 @@ default List<Document> transactGetItems(TransactGetItemsEnhancedRequest request)
336
337
* MyItem item = results.get(3).getItem(secondItemTable);
337
338
* }
338
339
* </pre>
340
+ * <p>
341
+ * See {@link DynamoDbClient#transactGetItems(Consumer)} to learn more about {@code TransactGetItems}.
339
342
*
340
343
* @param requestConsumer a {@link Consumer} of {@link TransactGetItemsEnhancedRequest} containing keys with table references.
341
344
* @return a list of {@link Document} with the results.
345
+ *
342
346
*/
343
347
default List <Document > transactGetItems (Consumer <TransactGetItemsEnhancedRequest .Builder > requestConsumer ) {
344
348
throw new UnsupportedOperationException ();
345
349
}
346
350
347
351
/**
348
352
* Writes and/or modifies multiple items from one or more tables in a single atomic transaction. TransactGetItem is a
349
- * composite operation where the request contains a set of up to 25 action requests, each containing a table reference and
353
+ * composite operation where the request contains a set of action requests, each containing a table reference and
350
354
* one of the following requests:
351
355
* <ul>
352
356
* <li>Condition check of item - {@link ConditionCheck}</li>
@@ -384,6 +388,7 @@ default List<Document> transactGetItems(Consumer<TransactGetItemsEnhancedRequest
384
388
* .build());
385
389
* }
386
390
* </pre>
391
+ * See {@link DynamoDbClient#transactWriteItems(Consumer)} to learn more about {@code TransactWriteItems}.
387
392
*
388
393
* @param request A {@link BatchWriteItemEnhancedRequest} containing keys grouped by tables.
389
394
*/
@@ -393,7 +398,7 @@ default Void transactWriteItems(TransactWriteItemsEnhancedRequest request) {
393
398
394
399
/**
395
400
* Writes and/or modifies multiple items from one or more tables in a single atomic transaction. TransactGetItem is a
396
- * composite operation where the request contains a set of up to 25 action requests, each containing a table reference and
401
+ * composite operation where the request contains a set of action requests, each containing a table reference and
397
402
* one of the following requests:
398
403
* <ul>
399
404
* <li>Condition check of item - {@link ConditionCheck}</li>
@@ -427,6 +432,7 @@ default Void transactWriteItems(TransactWriteItemsEnhancedRequest request) {
427
432
* .addUpdateItem(secondItemTable, i -> i.item(item4)));
428
433
* }
429
434
* </pre>
435
+ * See {@link DynamoDbClient#transactWriteItems(Consumer)} to learn more about {@code TransactWriteItems}.
430
436
*
431
437
* @param requestConsumer a {@link Consumer} of {@link TransactWriteItemsEnhancedRequest} containing keys and items grouped
432
438
* by tables.
0 commit comments