<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addConditionCheck(MappedTableResource<T> mappedTableResource,
Consumer<ConditionCheck.Builder> requestConsumer) |
Adds a condition check for a primary key in the associated table to the transaction by accepting a consumer
of ConditionCheck.Builder .
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addConditionCheck(MappedTableResource<T> mappedTableResource,
ConditionCheck<T> request) |
Adds a condition check for a primary key in the associated table to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource<T> mappedTableResource,
Key key) |
Adds a primary lookup key for the item to delete, and it's associated table, to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource<T> mappedTableResource,
DeleteItemEnhancedRequest request) |
Deprecated.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource<T> mappedTableResource,
TransactDeleteItemEnhancedRequest request) |
Adds a primary lookup key for the item to delete, and its associated table, to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource<T> mappedTableResource,
T keyItem) |
Adds a primary lookup key for the item to delete, and it's associated table, to the transaction.
|
TransactGetItemsEnhancedRequest.Builder |
TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<?> mappedTableResource,
Key key) |
Adds a primary lookup key and it's associated table to the transaction.
|
TransactGetItemsEnhancedRequest.Builder |
TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<?> mappedTableResource,
GetItemEnhancedRequest request) |
Adds a primary lookup key and it's associated table to the transaction.
|
<T> TransactGetItemsEnhancedRequest.Builder |
TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<T> mappedTableResource,
T keyItem) |
Adds a primary lookup key and it's associated table to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource,
PutItemEnhancedRequest<T> request) |
Deprecated.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource,
TransactPutItemEnhancedRequest<T> request) |
Adds an item to be written, and it's associated table, to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource,
T item) |
Adds an item to be written, and it's associated table, to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource,
TransactUpdateItemEnhancedRequest<T> request) |
Adds an item to be updated, and it's associated table, to the transaction.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource,
UpdateItemEnhancedRequest<T> request) |
Deprecated.
|
<T> TransactWriteItemsEnhancedRequest.Builder |
TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource,
T item) |
Adds an item to be updated, and it's associated table, to the transaction.
|
ReadBatch.Builder<T> |
ReadBatch.Builder.mappedTableResource(MappedTableResource<T> mappedTableResource) |
Sets the mapped table resource (table) that the items in this read batch should come from.
|
WriteBatch.Builder<T> |
WriteBatch.Builder.mappedTableResource(MappedTableResource<T> mappedTableResource) |
Sets the mapped table resource (table) that the items in this write batch should come from.
|
<T> List<T> |
BatchGetResultPage.resultsForTable(MappedTableResource<T> mappedTable) |
Retrieve all items on this result page belonging to the supplied table.
|
default <T> SdkIterable<T> |
BatchGetResultPageIterable.resultsForTable(MappedTableResource<T> mappedTable) |
Retrieve all items belonging to the supplied table across all pages.
|
default <T> SdkPublisher<T> |
BatchGetResultPagePublisher.resultsForTable(MappedTableResource<T> mappedTable) |
Returns a publisher that can be used to request a stream of results belonging to the supplied table across all pages.
|
List<Key> |
BatchWriteResult.unprocessedDeleteItemsForTable(MappedTableResource<?> mappedTable) |
Retrieve any unprocessed delete action keys belonging to the supplied table from the result.
|
List<Key> |
BatchGetResultPage.unprocessedKeysForTable(MappedTableResource<?> mappedTable) |
Returns a list of keys associated with a given table that were not processed during the operation, typically
because the total size of the request is too large or exceeds the provisioned throughput of the table.
|
<T> List<T> |
BatchWriteResult.unprocessedPutItemsForTable(MappedTableResource<T> mappedTable) |
Retrieve any unprocessed put action items belonging to the supplied table from the result .
|