Package-level declarations

Types

Link copied to clipboard

Converts between Item and AttributeValue. This converter is typically chained following an ItemConverter using the + operator.

Link copied to clipboard
class NullableValueConverter<V : Any>(delegate: ValueConverter<V>, nullValueConverter: ValueConverter<Nothing?> = NullValueConverter) : Converter<V?, AttributeValue>

Creates a converter between potentially-null values and DynamoDB NULL values.

Link copied to clipboard

Converts between null values and DynamoDB NULL values. This converter is not generally useful on its own and is typically combined with a type-specific non-nullable delegate in a NullableValueConverter.

Link copied to clipboard

Defines the logic for converting individual values between a high-level type V (e.g., String, Boolean, Map) and DynamoDB data types

Inherited functions

Link copied to clipboard
fun <V : Any> ValueConverter<V>.asNullable(nullValueConverter: ValueConverter<Nothing?> = NullValueConverter): ValueConverter<V?>