appending

abstract infix fun AttributePath.appending(value: Expression): Expression
open infix fun AttributePath.appending(value: List<Any?>): Expression

Creates a function expression which represents the list value of this attribute path concatenated with the given list value. This corresponds to the low-level DynamoDB function list_append.

Parameters

value

The list value to append to this list value


abstract infix fun List<Any?>.appending(value: Expression): Expression

Creates a function expression which represents the given list value with the value of this attribute path. This corresponds to the low-level DynamoDB function list_append.

Parameters

value

The list-valued attribute to append to this list