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

org.sisioh.aws4s.dynamodb.document.RichUpdateItemOutcome.scala Maven / Gradle / Ivy

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

import com.amazonaws.services.dynamodbv2.document.{ Item, UpdateItemOutcome }
import com.amazonaws.services.dynamodbv2.model.UpdateItemResult
import org.sisioh.aws4s.PimpedType

object UpdateItemOutcomeFactory {

  def apply(result: UpdateItemResult): UpdateItemOutcome = new UpdateItemOutcome(result)

}

class RichUpdateItemOutcome(val underlying: UpdateItemOutcome) extends AnyVal with PimpedType[UpdateItemOutcome] {

  def item: Item = underlying.getItem

  def updateItemResult(): UpdateItemResult = underlying.getUpdateItemResult

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy