Item

interface Item : Map<String, AttributeValue>

An immutable representation of a low-level item in a DynamoDB table. Items consist of attributes, each of which have a string name and a value.

Inherited properties

Link copied to clipboard
Link copied to clipboard
abstract val keys: Set<String>
Link copied to clipboard
expect abstract val size: Int
Link copied to clipboard

Inherited functions

Link copied to clipboard
abstract fun containsKey(key: String): Boolean
Link copied to clipboard
abstract fun containsValue(value: AttributeValue): Boolean
Link copied to clipboard
abstract operator fun get(key: String): AttributeValue?
Link copied to clipboard
expect abstract fun isEmpty(): Boolean
Link copied to clipboard

Converts this map to an immutable Item

Link copied to clipboard

Convert this Item into a MutableItem. Changes to the returned instance do not affect this instance.