All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sisioh.aws4s.dynamodb.model.KeyEntry.scala Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package org.sisioh.aws4s.dynamodb.model

import java.util.Map.Entry

import com.amazonaws.services.dynamodbv2.model.AttributeValue

private[dynamodb] case class KeyEntry(key: String, var value: AttributeValue) extends Entry[String, AttributeValue] {
  override def getKey: String = key

  override def getValue: AttributeValue = value

  override def setValue(value: AttributeValue): AttributeValue = {
    this.value = value
    this.value
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy