Uses of Class
software.amazon.awssdk.enhanced.dynamodb.Key
-
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return Key Modifier and Type Method Description Key
Key.Builder. build()
Construct aKey
from this builder.Key
DynamoDbAsyncIndex. keyFrom(T item)
Creates aKey
object from a modelled item.Key
DynamoDbIndex. keyFrom(T item)
Creates aKey
object from a modelled item.Key
MappedTableResource. keyFrom(T item)
Creates aKey
object from a modelled item.Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type Key Modifier and Type Method Description default CompletableFuture<T>
DynamoDbAsyncTable. deleteItem(Key key)
Deletes a single item from the mapped table using a supplied primaryKey
.default T
DynamoDbTable. deleteItem(Key key)
Deletes a single item from the mapped table using a supplied primaryKey
.default CompletableFuture<T>
DynamoDbAsyncTable. getItem(Key key)
Retrieves a single item from the mapped table using a supplied primaryKey
.default T
DynamoDbTable. getItem(Key key)
Retrieves a single item from the mapped table using a supplied primaryKey
. -
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.internal
Methods in software.amazon.awssdk.enhanced.dynamodb.internal that return Key Modifier and Type Method Description static <T> Key
EnhancedClientUtils. createKeyFromItem(T item, TableSchema<T> tableSchema, String indexName)
static Key
EnhancedClientUtils. createKeyFromMap(Map<String,AttributeValue> itemMap, TableSchema<?> tableSchema, String indexName)
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.internal.client
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.client that return Key Modifier and Type Method Description Key
DefaultDynamoDbAsyncIndex. keyFrom(T item)
Key
DefaultDynamoDbAsyncTable. keyFrom(T item)
Key
DefaultDynamoDbIndex. keyFrom(T item)
Key
DefaultDynamoDbTable. keyFrom(T item)
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.client with parameters of type Key Modifier and Type Method Description CompletableFuture<T>
DefaultDynamoDbAsyncTable. deleteItem(Key key)
T
DefaultDynamoDbTable. deleteItem(Key key)
CompletableFuture<T>
DefaultDynamoDbAsyncTable. getItem(Key key)
T
DefaultDynamoDbTable. getItem(Key key)
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.internal.conditional
Constructors in software.amazon.awssdk.enhanced.dynamodb.internal.conditional with parameters of type Key Constructor Description BeginsWithConditional(Key key)
BetweenConditional(Key key1, Key key2)
EqualToConditional(Key key)
SingleKeyItemConditional(Key key, String operator)
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.internal.operations
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.operations that return Key Modifier and Type Method Description Key
BatchableReadOperation. key()
Key
GetItemOperation. key()
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return Key Modifier and Type Method Description Key
ConditionCheck. key()
Returns the primaryKey
that the condition is valid for, or null if it doesn't exist.Key
DeleteItemEnhancedRequest. key()
Returns the primaryKey
for the item to delete.Key
GetItemEnhancedRequest. key()
Returns the primaryKey
for the item to get.Key
TransactDeleteItemEnhancedRequest. key()
Returns the primaryKey
for the item to delete.Methods in software.amazon.awssdk.enhanced.dynamodb.model that return types with arguments of type Key Modifier and Type Method Description 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.Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type Key Modifier and Type Method Description <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.WriteBatch.Builder<T>
WriteBatch.Builder. addDeleteItem(Key key)
Adds a DeleteItem request to the builder.ReadBatch.Builder<T>
ReadBatch.Builder. addGetItem(Key key)
Adds a GetItem request with a primaryKey
to the builder.TransactGetItemsEnhancedRequest.Builder
TransactGetItemsEnhancedRequest.Builder. addGetItem(MappedTableResource<?> mappedTableResource, Key key)
Adds a primary lookup key and it's associated table to the transaction.ConditionCheck.Builder
ConditionCheck.Builder. key(Key key)
Sets the primaryKey
that will be used together with the condition expression.DeleteItemEnhancedRequest.Builder
DeleteItemEnhancedRequest.Builder. key(Key key)
Sets the primaryKey
that will be used to match the item to delete.GetItemEnhancedRequest.Builder
GetItemEnhancedRequest.Builder. key(Key key)
Sets the primaryKey
that will be used to match the item to retrieve.TransactDeleteItemEnhancedRequest.Builder
TransactDeleteItemEnhancedRequest.Builder. key(Key key)
Sets the primaryKey
that will be used to match the item to delete.static QueryConditional
QueryConditional. keyEqualTo(Key key)
Creates aQueryConditional
that matches when the key of an index is equal to a specific value.static QueryConditional
QueryConditional. sortBeginsWith(Key key)
Creates aQueryConditional
that matches when the key of an index begins with a specific value.static QueryConditional
QueryConditional. sortBetween(Key keyFrom, Key keyTo)
Creates aQueryConditional
that matches when the key of an index is between two specific values.static QueryConditional
QueryConditional. sortGreaterThan(Key key)
Creates aQueryConditional
that matches when the key of an index is greater than a specific value.static QueryConditional
QueryConditional. sortGreaterThanOrEqualTo(Key key)
Creates aQueryConditional
that matches when the key of an index is greater than or equal to a specific value.static QueryConditional
QueryConditional. sortLessThan(Key key)
Creates aQueryConditional
that matches when the key of an index is less than a specific value.static QueryConditional
QueryConditional. sortLessThanOrEqualTo(Key key)
Creates aQueryConditional
that matches when the key of an index is less than or equal to a specific value.
-