Uses of Class
software.amazon.awssdk.enhanced.dynamodb.Key.Builder
-
Packages that use Key.Builder Package Description software.amazon.awssdk.enhanced.dynamodb software.amazon.awssdk.enhanced.dynamodb.model -
-
Uses of Key.Builder in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return Key.Builder Modifier and Type Method Description Key.BuilderKey.Builder. addPartitionValue(Object value)Adds a partition key value to this key builder for composite partition keys.Key.BuilderKey.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.BuilderKey.Builder. partitionValue(Number partitionValue)Numeric value to be used for the single partition key.Key.BuilderKey.Builder. partitionValue(String partitionValue)String value to be used for the single partition key.Key.BuilderKey.Builder. partitionValue(SdkBytes partitionValue)Binary value to be used for the single partition key.Key.BuilderKey.Builder. partitionValue(AttributeValue partitionValue)Value to be used for the single partition keyKey.BuilderKey.Builder. partitionValues(List<AttributeValue> partitionValues)Values to be used for composite partition keysKey.BuilderKey.Builder. sortValue(Number sortValue)Numeric value to be used for the single sort key.Key.BuilderKey.Builder. sortValue(String sortValue)String value to be used for the single sort key.Key.BuilderKey.Builder. sortValue(SdkBytes sortValue)Binary value to be used for the single sort key.Key.BuilderKey.Builder. sortValue(AttributeValue sortValue)Value to be used for the single sort keyKey.BuilderKey.Builder. sortValues(List<AttributeValue> sortValues)Values to be used for composite sort keysKey.BuilderKey. 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.Builder Modifier and Type Method Description ConditionCheck.BuilderConditionCheck.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.BuilderDeleteItemEnhancedRequest.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.BuilderGetItemEnhancedRequest.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.BuilderTransactDeleteItemEnhancedRequest.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.
-