Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.xspec |
A request-centric Expression Specification Builder package that can be used to construct valid
expressions, and the respective name maps and value maps, for various DynamoDB requests in a typeful manner.
|
Modifier and Type | Method and Description |
---|---|
AddAction |
N.add(Number value)
Returns an
AddAction for build expression that would add the
given value mathematically to the existing attribute; or if the attribute
does not already exist, add the new attribute and the value to the item. |
AddAction |
BS.append(byte[]... values)
Returns an
AddAction for build expression that would append
the specified values to this binary set; or if the attribute does not
already exist, add the new attribute and the value(s) to the item. |
AddAction |
BS.append(ByteBuffer... values)
Returns an
AddAction for build expression that would append
the specified values to this binary set; or if the attribute does not
already exist, add the new attribute and the value(s) to the item. |
AddAction |
NS.append(Number... values)
Returns an
AddAction for building expression that would
append the specified values to this number set; or if the attribute does
not already exist, adding the new attribute and the value(s) to the item. |
AddAction |
SS.append(Set<String> values)
Returns an
AddAction for building expression that would
append the specified values to this string set; or if the attribute does
not already exist, add the new attribute and the value(s) to the item. |
<T extends Number> |
NS.append(Set<T> values)
Returns an
AddAction for building expression that would
append the specified values to this number set; or if the attribute does
not already exist, adding the new attribute and the value(s) to the item. |
AddAction |
SS.append(String... values)
Returns an
AddAction for building expression that would
append the specified values to this string set; or if the attribute does
not already exist, add the new attribute and the value(s) to the item. |
Copyright © 2023. All rights reserved.