Uses of Class
software.amazon.awssdk.enhanced.dynamodb.Key.Builder
Packages that use Key.Builder
Package
Description
-
Uses of Key.Builder in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return Key.BuilderModifier and TypeMethodDescriptionKey.Builder.addPartitionValue(Object value) Adds a partition key value to this key builder for composite partition keys.Key.Builder.addSortValue(Object value) Adds a sort key value to this key builder for composite sort keys.static Key.BuilderKey.builder()Returns a new builder that can be used to construct an instance of this class.Key.Builder.partitionValue(Number partitionValue) Numeric value to be used for the single partition key.Key.Builder.partitionValue(String partitionValue) String value to be used for the single partition key.Key.Builder.partitionValue(SdkBytes partitionValue) Binary value to be used for the single partition key.Key.Builder.partitionValue(AttributeValue partitionValue) Value to be used for the single partition keyKey.Builder.partitionValues(List<AttributeValue> partitionValues) Values to be used for composite partition keysNumeric value to be used for the single sort key.String value to be used for the single sort key.Binary value to be used for the single sort key.Key.Builder.sortValue(AttributeValue sortValue) Value to be used for the single sort keyKey.Builder.sortValues(List<AttributeValue> sortValues) Values to be used for composite sort keysKey.toBuilder()Converts an existing key into a builder object that can be used to modify its values and then create a new key. -
Uses of Key.Builder in software.amazon.awssdk.enhanced.dynamodb.model
Method parameters in software.amazon.awssdk.enhanced.dynamodb.model with type arguments of type Key.BuilderModifier and TypeMethodDescriptionConditionCheck.Builder.key(Consumer<Key.Builder> keyConsumer) Sets the primaryKeythat will be used together with the condition expression on the builder by accepting a consumer ofKey.Builder.DeleteItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) Sets the primaryKeythat will be used to match the item to delete on the builder by accepting a consumer ofKey.Builder.GetItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) Sets the primaryKeythat will be used to match the item to retrieve by accepting a consumer ofKey.Builder.TransactDeleteItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) Sets the primaryKeythat will be used to match the item to delete on the builder by accepting a consumer ofKey.Builder.static QueryConditionalQueryConditional.keyEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is equal to a specific value.static QueryConditionalQueryConditional.sortBeginsWith(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index begins with a specific value.static QueryConditionalQueryConditional.sortBetween(Consumer<Key.Builder> keyFromConsumer, Consumer<Key.Builder> keyToConsumer) Creates aQueryConditionalthat matches when the key of an index is between two specific values.static QueryConditionalQueryConditional.sortGreaterThan(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is greater than a specific value.static QueryConditionalQueryConditional.sortGreaterThanOrEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is greater than or equal to a specific value.static QueryConditionalQueryConditional.sortLessThan(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is less than a specific value.static QueryConditionalQueryConditional.sortLessThanOrEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is less than or equal to a specific value.