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
    Definition Classes
    Equals
  2. abstract def internalToMap: Map[String, DynamoValue]
    Attributes
    protected
  3. abstract def productArity: Int
    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def +(x: (String, DynamoValue)): DynamoObject

    Operator alias for add

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

    Operator alias for remove

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

    Operator alias for concat

  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def add(key: String, value: DynamoValue): DynamoObject

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

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

    Gets the value mapped to key if it exists

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  11. final def concat(that: DynamoObject): DynamoObject

    Concatenates two maps

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

    Checks if the map contains a certain key

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def equals(that: Any): Boolean
    Definition Classes
    DynamoObject → Equals → AnyRef → Any
  15. final def get[A](key: String)(implicit arg0: DynamoFormat[A]): Either[DynamoReadError, A]
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def hashCode(): Int
    Definition Classes
    DynamoObject → AnyRef → Any
  18. final def isEmpty: Boolean

    Checks if the map is empty

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def keys: Iterable[String]

    Gets the list of keys in the map

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

    Transforms the map by assigning values to new keys

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def nonEmpty: Boolean

    Chekcs if the map is not empty

  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def parTraverse[F[_], M](f: (DynamoValue) ⇒ F[M])(implicit arg0: Parallel[F], arg1: Monoid[M]): F[M]

    Traverse the object in parallel fashion and build up monoidal structure

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

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

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

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

  29. def productIterator: Iterator[Any]
    Definition Classes
    Product
  30. def productPrefix: String
    Definition Classes
    Product
  31. final def remove(key: String): DynamoObject

    Remove an entry from the map if there

  32. final def size: Int

    Gets the size of the map

  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. final def toAttributeValue: AttributeValue

    Make an AWS SDK value out of this map

  35. final def toDynamoValue: DynamoValue

    Make a value out of this map

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

    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

  37. final def toJavaMap: Map[String, AttributeValue]
  38. final def toMap[V](implicit D: DynamoFormat[V]): Either[DynamoReadError, Map[String, V]]

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

  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def traverse[M](f: (DynamoValue) ⇒ M)(implicit arg0: Monoid[M]): M

    Traverse the object into a monoidal structure

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

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

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

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

  43. final def values: Iterable[DynamoValue]

    Gets the list of values in the map

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped