p

awscala

dynamodbv2

package dynamodbv2

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. dynamodbv2
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Attribute(name: String, value: AttributeValue) extends Product with Serializable
  2. type AttributeAction = com.amazonaws.services.dynamodbv2.model.AttributeAction
  3. case class AttributeDefinition(name: String, scalarType: ScalarAttributeType) extends com.amazonaws.services.dynamodbv2.model.AttributeDefinition with Product with Serializable
  4. case class AttributeValue(s: Option[String] = None, bl: Option[Boolean] = None, n: Option[String] = None, b: Option[ByteBuffer] = None, m: Option[Map[String, com.amazonaws.services.dynamodbv2.model.AttributeValue]] = None, l: Seq[com.amazonaws.services.dynamodbv2.model.AttributeValue] = Nil, ss: Seq[String] = Nil, ns: Seq[String] = Nil, bs: Seq[ByteBuffer] = Nil) extends com.amazonaws.services.dynamodbv2.model.AttributeValue with Product with Serializable
  5. case class BillingModeSummary(billingMode: String, lastUpdateToPayPerRequestDateTime: DateTime) extends com.amazonaws.services.dynamodbv2.model.BillingModeSummary with Product with Serializable
  6. type ComparisonOperator = com.amazonaws.services.dynamodbv2.model.ComparisonOperator
  7. class CondCompares extends DynamoCompares[com.amazonaws.services.dynamodbv2.model.Condition]
  8. class ConfiguredDynamoDBClient extends AmazonDynamoDBClient with DynamoDB

    Configured Implementation

  9. trait DynamoCompares[A] extends AnyRef
  10. trait DynamoConditions[A] extends AnyRef
  11. trait DynamoDB extends AmazonDynamoDB

    Amazon DynamoDB Java client wrapper

    Amazon DynamoDB Java client wrapper

    See also

    http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/

  12. class DynamoDBClient extends AmazonDynamoDBClient with DynamoDB

    Default Implementation

  13. class EACompares extends DynamoCompares[ExpectedAttributeValue]
  14. case class GlobalSecondaryIndex(name: String, keySchema: Seq[KeySchema], projection: Projection, provisionedThroughput: ProvisionedThroughput) extends com.amazonaws.services.dynamodbv2.model.GlobalSecondaryIndex with SecondaryIndex with Product with Serializable
  15. case class Item(table: Table, attributes: Seq[Attribute]) extends Product with Serializable
  16. case class KeySchema(attributeName: String, keyType: KeyType) extends KeySchemaElement with Product with Serializable
  17. type KeyType = com.amazonaws.services.dynamodbv2.model.KeyType
  18. case class LocalSecondaryIndex(name: String, keySchema: Seq[KeySchema], projection: Projection) extends com.amazonaws.services.dynamodbv2.model.LocalSecondaryIndex with SecondaryIndex with Product with Serializable
  19. case class LocalSecondaryIndexMeta(name: String, sizeBytes: Long, itemCount: Long, keySchema: Seq[KeySchema], projection: Projection) extends LocalSecondaryIndexDescription with Product with Serializable
  20. case class PageStats(page: Int, lastPage: Boolean, limit: Int, scanned: Int, items: Int, consumedCapacity: ConsumedCapacity) extends Product with Serializable
  21. case class Projection(projectionType: ProjectionType, nonKeyAttributes: Seq[String] = Nil) extends com.amazonaws.services.dynamodbv2.model.Projection with Product with Serializable
  22. type ProjectionType = com.amazonaws.services.dynamodbv2.model.ProjectionType
  23. case class ProvisionedThroughput(readCapacityUnits: Long, writeCapacityUnits: Long) extends com.amazonaws.services.dynamodbv2.model.ProvisionedThroughput with Product with Serializable
  24. case class ProvisionedThroughputMeta(numberOfDecreasesToday: Long, readCapacityUnits: Long, writeCapacityUnits: Long, lastDecreasedAt: DateTime, lastIncreasedAt: DateTime) extends ProvisionedThroughputDescription with Product with Serializable
  25. class QueryResultPager extends ResultPager[QueryRequest, QueryResult]
  26. sealed trait ResultPager[TReq, TRes] extends Iterator[Item]

    The ResultPager allows iteration over the results from a DynamoDB query/scan as a single stream of items, handling the necessary paging details in the background.

    The ResultPager allows iteration over the results from a DynamoDB query/scan as a single stream of items, handling the necessary paging details in the background.

    DynamoDB paginates the result of query/scan operations. The data returned from a Query or Scan operation is limited to 1 MB; this means that if the result set exceeds 1 MB of data, you'll need to perform another Query or Scan operation to retrieve the next 1 MB of data. In addition, the limit parameter controls the number of items that you want DynamoDB to process in a single request before returning results. See http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Pagination

    Each response from DynamoDB indicates if the processing has reached the end of the dataset, or if another request is needed in order to continue scanning where the last request finished.

    When the items from a page is exhausted, the ResultPager will issue a new query/scan for the next page of results, until processing reaches the end of the dataset, or the client stops iterating over the result (as the return value is a Stream[Item])

  27. type ReturnConsumedCapacity = com.amazonaws.services.dynamodbv2.model.ReturnConsumedCapacity
  28. class ScanResultPager extends ResultPager[ScanRequest, ScanResult]
  29. trait SecondaryIndex extends AnyRef
  30. type Select = com.amazonaws.services.dynamodbv2.model.Select
  31. 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: BillingMode = BillingMode.Provisioned) extends Product with Serializable
  32. case class TableMeta(name: String, sizeBytes: Long, itemCount: Long, status: TableStatus, attributes: Seq[AttributeDefinition], keySchema: Seq[KeySchema], localSecondaryIndexes: Seq[LocalSecondaryIndexMeta], provisionedThroughput: ProvisionedThroughputMeta, billingModeSummary: BillingModeSummary, createdAt: DateTime) extends TableDescription with Product with Serializable
  33. type TableStatus = com.amazonaws.services.dynamodbv2.model.TableStatus

Value Members

  1. val cond: DynamoDBCondition.type
  2. object AttributeAction
  3. object AttributeDefinition extends Serializable
  4. object AttributeType
  5. object AttributeValue extends Serializable
  6. object BillingMode
  7. object BillingModeSummary extends Serializable
  8. object DynamoDB
  9. object DynamoDBCondition extends DynamoConditions[com.amazonaws.services.dynamodbv2.model.Condition]
  10. object DynamoDBExpectedAttributeValue extends DynamoConditions[ExpectedAttributeValue]
  11. object GlobalSecondaryIndex extends Serializable
  12. object Item extends Serializable
  13. object KeySchema extends Serializable
  14. object KeyType
  15. object LocalSecondaryIndex extends Serializable
  16. object LocalSecondaryIndexMeta extends Serializable
  17. object Projection extends Serializable
  18. object ProjectionType
  19. object ProvisionedThroughput extends Serializable
  20. object ProvisionedThroughputMeta extends Serializable
  21. object TableMeta extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped