Class/Object

org.scanamo

DynamoObject

Related Docs: object DynamoObject | package scanamo

Permalink

sealed abstract class DynamoObject extends Product with Serializable

A DynamoObject is a map of strings to values that can be embedded into an AttributeValue.

Self Type
DynamoObject
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamoObject
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    Equals
  2. abstract def internalToMap: Map[String, DynamoValue]

    Permalink
    Attributes
    protected
  3. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def +(x: (String, DynamoValue)): DynamoObject

    Permalink

    Operator alias for add

  4. final def -(key: String): DynamoObject

    Permalink

    Operator alias for remove

  5. final def <>(that: DynamoObject): DynamoObject

    Permalink

    Operator alias for concat

  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. final def add(key: String, value: DynamoValue): DynamoObject

    Permalink

    Add an entry to the map or overwrites the existing value if there

  8. final def apply(key: String): Option[DynamoValue]

    Permalink

    Gets the value mapped to key if it exists

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def concat(that: DynamoObject): DynamoObject

    Permalink

    Concatenates two maps

  12. final def contains(key: String): Boolean

    Permalink

    Checks if the map contains a certain key

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def equals(that: Any): Boolean

    Permalink
    Definition Classes
    DynamoObject → Equals → AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def get[A](key: String)(implicit arg0: DynamoFormat[A]): Either[DynamoReadError, A]

    Permalink
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def hashCode(): Int

    Permalink
    Definition Classes
    DynamoObject → AnyRef → Any
  19. final def isEmpty: Boolean

    Permalink

    Checks if the map is empty

  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def keys: Iterable[String]

    Permalink

    Gets the list of keys in the map

  22. final def mapKeys(f: (String) ⇒ String): DynamoObject

    Permalink

    Transforms the map by assigning values to new keys

  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def nonEmpty: Boolean

    Permalink

    Chekcs if the map is not empty

  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def parTraverse[F[_], M](f: (DynamoValue) ⇒ F[M])(implicit arg0: Parallel[F], arg1: Monoid[M]): F[M]

    Permalink

    Traverse the object in parallel fashion and build up monoidal structure

  28. final def parTraverseWith[F[_], M](f: (DynamoValue) ⇒ F[M])(z: M)(c: (M, M) ⇒ M)(implicit arg0: Parallel[F]): F[M]

    Permalink

    Traverse the object in parallel foshiono and build up a result out of each value

  29. final def parTraverseWithKey[F[_], M](f: (String, DynamoValue) ⇒ F[M])(z: M)(c: (M, M) ⇒ M)(implicit F: Parallel[F]): F[M]

    Permalink

    Traverse the object in parallel fashion and build up a result out of each value and its label

  30. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  31. def productPrefix: String

    Permalink
    Definition Classes
    Product
  32. final def remove(key: String): DynamoObject

    Permalink

    Remove an entry from the map if there

  33. final def size: Int

    Permalink

    Gets the size of the map

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. final def toAttributeValue: AttributeValue

    Permalink

    Make an AWS SDK value out of this map

  36. final def toDynamoValue: DynamoValue

    Permalink

    Make a value out of this map

  37. final def toExpressionAttributeValues: Option[Map[String, AttributeValue]]

    Permalink

    Builds a map where the keys are transformed to match the convention for expression attribute values in DynamoDB operations See https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.ExpressionAttributeValues.html

  38. final def toJavaMap: Map[String, AttributeValue]

    Permalink
  39. final def toMap[V](implicit D: DynamoFormat[V]): Either[DynamoReadError, Map[String, V]]

    Permalink

    Builds a scala.collection.Map if this map is made entirely of values of type V

  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. final def traverse[M](f: (DynamoValue) ⇒ M)(implicit arg0: Monoid[M]): M

    Permalink

    Traverse the object into a monoidal structure

  42. final def traverseWith[M](f: (DynamoValue) ⇒ M)(z: M)(c: (M, M) ⇒ M): M

    Permalink

    Traverse the object and build up a result out of each value

  43. final def traverseWithKey[M](f: (String, DynamoValue) ⇒ M)(z: M)(c: (M, M) ⇒ M): M

    Permalink

    Traverse the object and build up a result out of each value and its label

  44. final def values: Iterable[DynamoValue]

    Permalink

    Gets the list of values in the map

  45. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped