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 TableCompat with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, TableCompat, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Table
  2. Serializable
  3. Product
  4. Equals
  5. TableCompat
  6. AnyRef
  7. 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 extractGetterNameAndValue(obj: Any): Seq[(String, AnyRef)]
    Attributes
    protected
  23. def get(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  24. def get(hashPK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def getItem(hashPK: Any, rangePK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  27. def getItem(hashPK: Any)(implicit dynamoDB: DynamoDB): Option[Item]
  28. val globalSecondaryIndexes: Seq[GlobalSecondaryIndex]
  29. val hashPK: String
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. val localSecondaryIndexes: Seq[LocalSecondaryIndex]
  32. val name: String
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. def productElementNames: Iterator[String]
    Definition Classes
    Product
  37. val provisionedThroughput: Option[ProvisionedThroughput]
  38. def put(hashPK: Any, rangePK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  39. def put(hashPK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
  40. def putAttributes(hashPK: Any, rangePK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  41. def putAttributes(hashPK: Any, attributes: Seq[SimplePk])(implicit dynamoDB: DynamoDB): Unit
  42. def putItem[E <: AnyRef](hashPK: Any, rangePK: Any, entity: E)(implicit dynamoDB: DynamoDB): Unit
  43. def putItem(hashPK: Any, rangePK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
    Definition Classes
    TableCompat
  44. def putItem(hashPK: Any, attributes: SimplePk*)(implicit dynamoDB: DynamoDB): Unit
    Definition Classes
    TableCompat
  45. def putItem[T](entity: T)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T], dynamoDB: DynamoDB): Unit
    Definition Classes
    TableCompat
  46. 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]
  47. 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]
  48. val rangePK: Option[String]
  49. 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]
  50. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  51. def update(throughput: ProvisionedThroughput)(implicit dynamoDB: DynamoDB): TableMeta
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  54. 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 TableCompat

Inherited from AnyRef

Inherited from Any

Ungrouped