Uses of Class
software.amazon.awssdk.enhanced.dynamodb.Key
Packages that use Key
Package
Description
-
Uses of Key in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return KeyModifier and TypeMethodDescriptionKey.Builder.build()Construct aKeyfrom this builder.Creates aKeyobject from a modelled item.Creates aKeyobject from a modelled item.Creates aKeyobject from a modelled item.Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type KeyModifier and TypeMethodDescriptiondefault 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>Retrieves a single item from the mapped table using a supplied primaryKey.default TRetrieves 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 KeyModifier and TypeMethodDescriptionstatic <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 KeyModifier and TypeMethodDescriptionMethods in software.amazon.awssdk.enhanced.dynamodb.internal.client with parameters of type KeyModifier and TypeMethodDescriptionDefaultDynamoDbAsyncTable.deleteItem(Key key) DefaultDynamoDbTable.deleteItem(Key key) -
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.internal.conditional
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.conditional with parameters of type KeyModifier and TypeMethodDescriptionQueryConditionalUtils.resolveKeys(Key key, TableSchema<?> tableSchema, String indexName) Constructors in software.amazon.awssdk.enhanced.dynamodb.internal.conditional with parameters of type KeyModifierConstructorDescriptionBeginsWithConditional(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 -
Uses of Key in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return KeyModifier and TypeMethodDescriptionConditionCheck.key()Returns the primaryKeythat the condition is valid for, or null if it doesn't exist.DeleteItemEnhancedRequest.key()Returns the primaryKeyfor the item to delete.GetItemEnhancedRequest.key()Returns the primaryKeyfor the item to get.TransactDeleteItemEnhancedRequest.key()Returns the primaryKeyfor the item to delete.Methods in software.amazon.awssdk.enhanced.dynamodb.model that return types with arguments of type KeyModifier and TypeMethodDescriptionBatchWriteResult.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.Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type KeyModifier and TypeMethodDescriptionTransactWriteItemsEnhancedRequest.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.addDeleteItem(Key key) Adds a DeleteItem request to the builder.ReadBatch.Builder.addGetItem(Key key) Adds a GetItem request with a primaryKeyto the builder.TransactGetItemsEnhancedRequest.Builder.addGetItem(MappedTableResource<?> mappedTableResource, Key key) Adds a primary lookup key and it's associated table to the transaction.Sets the primaryKeythat will be used together with the condition expression.Sets the primaryKeythat will be used to match the item to delete.Sets the primaryKeythat will be used to match the item to retrieve.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.