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 KeyKey.Builder. build()Construct aKeyfrom this builder.KeyDynamoDbAsyncIndex. keyFrom(T item)Creates aKeyobject from a modelled item.KeyDynamoDbIndex. keyFrom(T item)Creates aKeyobject from a modelled item.KeyMappedTableResource. keyFrom(T item)Creates aKeyobject 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 TDynamoDbTable. 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 TDynamoDbTable. 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> KeyEnhancedClientUtils. createKeyFromItem(T item, TableSchema<T> tableSchema, String indexName)static KeyEnhancedClientUtils. 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 KeyDefaultDynamoDbAsyncIndex. keyFrom(T item)KeyDefaultDynamoDbAsyncTable. keyFrom(T item)KeyDefaultDynamoDbIndex. keyFrom(T item)KeyDefaultDynamoDbTable. 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)TDefaultDynamoDbTable. deleteItem(Key key)CompletableFuture<T>DefaultDynamoDbAsyncTable. getItem(Key key)TDefaultDynamoDbTable. 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 KeyBatchableReadOperation. key()KeyGetItemOperation. 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 KeyConditionCheck. key()Returns the primaryKeythat the condition is valid for, or null if it doesn't exist.KeyDeleteItemEnhancedRequest. key()Returns the primaryKeyfor the item to delete.KeyGetItemEnhancedRequest. key()Returns the primaryKeyfor the item to get.KeyTransactDeleteItemEnhancedRequest. key()Returns the primaryKeyfor 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.BuilderTransactWriteItemsEnhancedRequest.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 primaryKeyto the builder.TransactGetItemsEnhancedRequest.BuilderTransactGetItemsEnhancedRequest.Builder. addGetItem(MappedTableResource<?> mappedTableResource, Key key)Adds a primary lookup key and it's associated table to the transaction.ConditionCheck.BuilderConditionCheck.Builder. key(Key key)Sets the primaryKeythat will be used together with the condition expression.DeleteItemEnhancedRequest.BuilderDeleteItemEnhancedRequest.Builder. key(Key key)Sets the primaryKeythat will be used to match the item to delete.GetItemEnhancedRequest.BuilderGetItemEnhancedRequest.Builder. key(Key key)Sets the primaryKeythat will be used to match the item to retrieve.TransactDeleteItemEnhancedRequest.BuilderTransactDeleteItemEnhancedRequest.Builder. key(Key key)Sets the primaryKeythat will be used to match the item to delete.static QueryConditionalQueryConditional. keyEqualTo(Key key)Creates aQueryConditionalthat matches when the key of an index is equal to a specific value.static QueryConditionalQueryConditional. sortBeginsWith(Key key)Creates aQueryConditionalthat matches when the key of an index begins with a specific value.static QueryConditionalQueryConditional. sortBetween(Key keyFrom, Key keyTo)Creates aQueryConditionalthat matches when the key of an index is between two specific values.static QueryConditionalQueryConditional. sortGreaterThan(Key key)Creates aQueryConditionalthat matches when the key of an index is greater than a specific value.static QueryConditionalQueryConditional. sortGreaterThanOrEqualTo(Key key)Creates aQueryConditionalthat matches when the key of an index is greater than or equal to a specific value.static QueryConditionalQueryConditional. sortLessThan(Key key)Creates aQueryConditionalthat matches when the key of an index is less than a specific value.static QueryConditionalQueryConditional. sortLessThanOrEqualTo(Key key)Creates aQueryConditionalthat matches when the key of an index is less than or equal to a specific value.
-