Uses of Interface
software.amazon.awssdk.enhanced.dynamodb.MappedTableResource
Packages that use MappedTableResource
Package
Description
-
Uses of MappedTableResource in software.amazon.awssdk.enhanced.dynamodb
Subinterfaces of MappedTableResource in software.amazon.awssdk.enhanced.dynamodbModifier and TypeInterfaceDescriptioninterfaceAsynchronous 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.interfaceSynchronous 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.Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type MappedTableResourceModifier and TypeMethodDescription<T> TDocument.getItem(MappedTableResource<T> mappedTableResource) Get the table item associated with the table schema in the mapped table resource. -
Uses of MappedTableResource in software.amazon.awssdk.enhanced.dynamodb.internal
Methods in software.amazon.awssdk.enhanced.dynamodb.internal with parameters of type MappedTableResourceModifier and TypeMethodDescription<T> TDefaultDocument.getItem(MappedTableResource<T> mappedTableResource) -
Uses of MappedTableResource in software.amazon.awssdk.enhanced.dynamodb.internal.client
Classes in software.amazon.awssdk.enhanced.dynamodb.internal.client that implement MappedTableResourceModifier and TypeClassDescriptionfinal classclass -
Uses of MappedTableResource in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type MappedTableResourceModifier and TypeMethodDescriptionTransactWriteItemsEnhancedRequest.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 ofConditionCheck.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.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.TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource<T> mappedTableResource, DeleteItemEnhancedRequest request) Deprecated.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.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.addGetItem(MappedTableResource<?> mappedTableResource, Key key) Adds a primary lookup key and it's associated table to the transaction.TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<?> mappedTableResource, GetItemEnhancedRequest request) Adds a primary lookup key and it's associated table to the transaction.TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<T> mappedTableResource, T keyItem) Adds a primary lookup key and it's associated table to the transaction.TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource, PutItemEnhancedRequest<T> request) TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource, TransactPutItemEnhancedRequest<T> request) Adds an item to be written, and it's associated table, to the transaction.TransactWriteItemsEnhancedRequest.Builder.addPutItem(MappedTableResource<T> mappedTableResource, T item) Adds an item to be written, and it's associated table, to the transaction.TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource, TransactUpdateItemEnhancedRequest<T> request) Adds an item to be updated, and it's associated table, to the transaction.TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource, UpdateItemEnhancedRequest<T> request) TransactWriteItemsEnhancedRequest.Builder.addUpdateItem(MappedTableResource<T> mappedTableResource, T item) Adds an item to be updated, and it's associated table, to the transaction.ReadBatch.Builder.mappedTableResource(MappedTableResource<T> mappedTableResource) Sets the mapped table resource (table) that the items in this read batch should come from.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.BatchWriteResult.unprocessedDeleteItemsForTable(MappedTableResource<?> mappedTable) Retrieve any unprocessed delete action keys belonging to the supplied table from the result.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 .
TransactWriteItemsEnhancedRequest.Builder.addDeleteItem(MappedTableResource, TransactDeleteItemEnhancedRequest)