TableCapacitySpecification

data class TableCapacitySpecification(val readCapacityUnits: Int? = null, val throughputMode: String? = null, val writeCapacityUnits: Int? = null)

Constructors

Link copied to clipboard
constructor(readCapacityUnits: Int? = null, throughputMode: String? = null, writeCapacityUnits: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val readCapacityUnits: Int? = null

The throughput capacity specified for read operations defined in read capacity units (RCUs).

Link copied to clipboard
val throughputMode: String? = null

The read/write throughput capacity mode for a table. Valid values: PAY_PER_REQUEST, PROVISIONED. The default value is PAY_PER_REQUEST.

Link copied to clipboard
val writeCapacityUnits: Int? = null

The throughput capacity specified for write operations defined in write capacity units (WCUs).