MutableItem

A mutable 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 override val keys: MutableSet<String>
Link copied to clipboard
expect abstract val size: Int
Link copied to clipboard
abstract override val values: MutableCollection<AttributeValue>

Inherited functions

Link copied to clipboard
expect abstract fun clear()
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
Link copied to clipboard
abstract fun putAll(from: Map<out String, AttributeValue>)
Link copied to clipboard
Link copied to clipboard

Convert this MutableItem to an immutable Item. Changes to this instance do not affect the returned instance.

Converts this map to an immutable Item

Link copied to clipboard