case class Table(name: String, hashPK: String, rangePK: Option[String] = None, attributes: Seq[AttributeDefinition] = Nil, localSecondaryIndexes: Seq[LocalSecondaryIndex] = Nil, globalSecondaryIndexes: Seq[GlobalSecondaryIndex] = Nil, provisionedThroughput: Option[ProvisionedThroughput] = None, billingMode: Option[BillingMode] = None) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Table
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Table(name: String, hashPK: String, rangePK: Option[String] = None, attributes: Seq[AttributeDefinition] = Nil, localSecondaryIndexes: Seq[LocalSecondaryIndex] = Nil, globalSecondaryIndexes: Seq[GlobalSecondaryIndex] = Nil, provisionedThroughput: Option[ProvisionedThroughput] = None, billingMode: Option[BillingMode] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addAttributes(hashPK: Any, rangePK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  5. def addAttributes(hashPK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val attributes: Seq[AttributeDefinition]
  8. def batchGet(attributes: List[CompositePk])(implicit dynamoDB: DynamoDB, di: DummyImplicit): Seq[Item]
  9. def batchGet(attributes: List[SimplePk])(implicit dynamoDB: DynamoDB): Seq[Item]
  10. def batchGetItems(attributes: List[CompositePk])(implicit dynamoDB: DynamoDB, di: DummyImplicit): Seq[Item]
  11. def batchGetItems(attributes: List[SimplePk])(implicit dynamoDB: DynamoDB): Seq[Item]
  12. val billingMode: Option[BillingMode]
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  14. def delete(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Unit
  15. def delete(hashPK: Any)(implicit dynamoDB: DynamoDB): Unit
  16. def deleteAttributes(hashPK: Any, rangePK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  17. def deleteAttributes(hashPK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  18. def deleteItem(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Unit
  19. def deleteItem(hashPK: Any)(implicit dynamoDB: DynamoDB): Unit
  20. def destroy()(implicit dynamoDB: DynamoDB): Unit
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def get(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  23. def get(hashPK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def getItem(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  26. def getItem(hashPK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  27. val globalSecondaryIndexes: Seq[GlobalSecondaryIndex]
  28. val hashPK: String
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. val localSecondaryIndexes: Seq[LocalSecondaryIndex]
  31. val name: String
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. def productElementNames: Iterator[String]
    Definition Classes
    Product
  36. val provisionedThroughput: Option[ProvisionedThroughput]
  37. def put(hashPK: Any, rangePK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  38. def put(hashPK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  39. def putAttributes(hashPK: Any, rangePK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  40. def putAttributes(hashPK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  41. def putItem(hashPK: Any, rangePK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  42. def putItem(hashPK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  43. def putItem[E <: AnyRef](hashPK: Any, rangePK: Any, entity: E)(implicit dynamoDB: DynamoDB): Unit
  44. def putItem[E <: AnyRef](entity: E)(implicit dynamoDB: DynamoDB): Unit
  45. def query(keyConditions: Seq[(String, com.amazonaws.services.dynamodbv2.model.Condition)], select: Select = aws.model.Select.ALL_ATTRIBUTES, attributesToGet: Seq[String] = Nil, scanIndexForward: Boolean = true, consistentRead: Boolean = false, limit: Int = 1000, pageStatsCallback: (PageStats) => Unit = null)(implicit dynamoDB: DynamoDB): Seq[Item]
  46. def queryWithIndex(index: SecondaryIndex, keyConditions: Seq[(String, com.amazonaws.services.dynamodbv2.model.Condition)], select: Select = aws.model.Select.ALL_ATTRIBUTES, attributesToGet: Seq[String] = Nil, scanIndexForward: Boolean = true, consistentRead: Boolean = false, limit: Int = 1000, pageStatsCallback: (PageStats) => Unit = null)(implicit dynamoDB: DynamoDB): Seq[Item]
  47. val rangePK: Option[String]
  48. def scan(filter: Seq[(String, com.amazonaws.services.dynamodbv2.model.Condition)], select: Select = aws.model.Select.ALL_ATTRIBUTES, attributesToGet: Seq[String] = Nil, limit: Int = 1000, segment: Int = 0, totalSegments: Int = 1, consistentRead: Boolean = false, pageStatsCallback: (PageStats) => Unit = null)(implicit dynamoDB: DynamoDB): Seq[Item]
  49. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  50. def update(throughput: ProvisionedThroughput)(implicit dynamoDB: DynamoDB): TableMeta
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  53. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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 Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped