| Modifier and Type | Interface and Description |
|---|---|
interface |
AsyncMappedTable<T>
Asynchronous interface for running commands against an object that is linked to a specific DynamoDb table resource
and therefore knows how to map records from that table into a modelled object.
|
interface |
MappedTable<T>
Synchronous interface for running commands against an object that is linked to a specific DynamoDb table resource
and therefore knows how to map records from that table into a modelled object.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DynamoDbAsyncMappedTable<T> |
class |
DynamoDbMappedTable<T> |
| Modifier and Type | Method and Description |
|---|---|
MappedTableResource<T> |
WriteBatch.mappedTableResource() |
MappedTableResource<T> |
ReadTransaction.mappedTableResource() |
MappedTableResource<T> |
ReadBatch.mappedTableResource() |
MappedTableResource<T> |
WriteTransaction.mappedTableResource() |
| Modifier and Type | Method and Description |
|---|---|
static <T> ReadBatch<T> |
ReadBatch.create(MappedTableResource<T> mappedTableResource,
BatchableReadOperation... readOperations) |
static <T> WriteBatch<T> |
WriteBatch.create(MappedTableResource<T> mappedTableResource,
BatchableWriteOperation<T>... writeOperations) |
static <T> ReadBatch<T> |
ReadBatch.create(MappedTableResource<T> mappedTableResource,
Collection<BatchableReadOperation> readOperations) |
static <T> WriteBatch<T> |
WriteBatch.create(MappedTableResource<T> mappedTableResource,
Collection<BatchableWriteOperation<T>> writeOperations) |
static <T> ReadTransaction<T> |
ReadTransaction.create(MappedTableResource<T> mappedTableResource,
TransactableReadOperation<T> readOperation) |
static <T> WriteTransaction<T> |
WriteTransaction.create(MappedTableResource<T> mappedTableResource,
TransactableWriteOperation<T> writeOperation) |
<T> T |
UnmappedItem.getItem(MappedTableResource<T> mappedTableResource) |
Copyright © 2020. All rights reserved.