Uses of Class
com.amazonaws.services.dynamodbv2.xspec.ListAppendFunction
Packages that use ListAppendFunction
Package
Description
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.
-
Uses of ListAppendFunction in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return ListAppendFunctionModifier and TypeMethodDescriptionstatic <T> ListAppendFunctionExpressionSpecBuilder.list_append(String path, List<? extends T> value) Returns aListAppendobject which represents a list_append(operand, operand) function call; used for building expression.static <T> ListAppendFunctionExpressionSpecBuilder.list_append(String path, T value) Returns aListAppendobject which represents a list_append(operand, operand) function call; used for building expression.static <T> ListAppendFunctionExpressionSpecBuilder.list_append(List<? extends T> value, String path) Returns aListAppendobject which represents a list_append(operand, operand) function call; used for building expression.L.listAppend(L that) Returns anListAppendfor building expression that involves a list_append(operand, operand) function for the purpose of adding the values of the specified list attribute to the current list attribute.L.listAppend(Object... values) Returns anListAppendfor building expression that involves a list_append(operand, operand) function for the purpose of adding the specified values to the current list attribute.L.listAppend(List<?> values) Returns anListAppendfor building expression that involves a list_append(operand, operand) function for the purpose of adding the specified list of values to that of the current list attribute.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type ListAppendFunctionModifier and TypeMethodDescriptionL.set(ListAppendFunction listAppendFunction) Returns aSetActionfor adding the value of evaluating the specifiedListAppendfunction as an attribute to an item.