Uses of Class
software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute.EnhancedAttributeValue
-
Packages that use EnhancedAttributeValue Package Description software.amazon.awssdk.enhanced.dynamodb.internal.converter software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute -
-
Uses of EnhancedAttributeValue in software.amazon.awssdk.enhanced.dynamodb.internal.converter
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.converter with parameters of type EnhancedAttributeValue Modifier and Type Method Description T
TypeConvertingVisitor. convert(EnhancedAttributeValue value)
Convert the provided value into the target type. -
Uses of EnhancedAttributeValue in software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute that return EnhancedAttributeValue Modifier and Type Method Description static EnhancedAttributeValue
EnhancedAttributeValue. fromAttributeValue(AttributeValue attributeValue)
Create anEnhancedAttributeValue
from a generatedAttributeValue
.static EnhancedAttributeValue
EnhancedAttributeValue. fromBoolean(Boolean booleanValue)
Create anEnhancedAttributeValue
for a boolean (bool) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromBytes(SdkBytes bytesValue)
Create anEnhancedAttributeValue
for a bytes (b) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromListOfAttributeValues(List<AttributeValue> listOfAttributeValuesValue)
Create anEnhancedAttributeValue
for a list-of-attributes (l) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromListOfAttributeValues(AttributeValue... listOfAttributeValuesValue)
Create anEnhancedAttributeValue
for a list-of-attributes (l) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromMap(Map<String,AttributeValue> mapValue)
Create anEnhancedAttributeValue
for a map (m) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromNumber(String numberValue)
Create anEnhancedAttributeValue
for a number (n) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfBytes(Collection<SdkBytes> setOfBytesValue)
Create anEnhancedAttributeValue
for a set-of-bytes (bs) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfBytes(List<SdkBytes> setOfBytesValue)
Create anEnhancedAttributeValue
for a set-of-bytes (bs) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfBytes(SdkBytes... setOfBytesValue)
Create anEnhancedAttributeValue
for a set-of-bytes (bs) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfNumbers(String... setOfNumbersValue)
Create anEnhancedAttributeValue
for a set-of-numbers (ns) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfNumbers(Collection<String> setOfNumbersValue)
Create anEnhancedAttributeValue
for a set-of-numbers (ns) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfNumbers(List<String> setOfNumbersValue)
Create anEnhancedAttributeValue
for a set-of-numbers (ns) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfStrings(String... setOfStringsValue)
Create anEnhancedAttributeValue
for a set-of-strings (ss) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfStrings(Collection<String> setOfStringsValue)
Create anEnhancedAttributeValue
for a set-of-strings (ss) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromSetOfStrings(List<String> setOfStringsValue)
Create anEnhancedAttributeValue
for a set-of-strings (ss) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. fromString(String stringValue)
Create anEnhancedAttributeValue
for a string (s) DynamoDB type.static EnhancedAttributeValue
EnhancedAttributeValue. nullValue()
Create anEnhancedAttributeValue
for the null DynamoDB type.
-