ProvisionedThroughputArgs

data class ProvisionedThroughputArgs(val readCapacityUnits: Output<Int>? = null, val writeCapacityUnits: Output<Int>? = null) : ConvertibleToJava<ProvisionedThroughputArgs>

Definition of ProvisionedThroughput

Constructors

Link copied to clipboard
constructor(readCapacityUnits: Output<Int>? = null, writeCapacityUnits: Output<Int>? = null)

Properties

Link copied to clipboard
val readCapacityUnits: Output<Int>? = null

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a `ThrottlingException`. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0.

Link copied to clipboard
val writeCapacityUnits: Output<Int>? = null

The maximum number of writes consumed per second before DynamoDB returns a `ThrottlingException`. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0.

Functions

Link copied to clipboard
open override fun toJava(): ProvisionedThroughputArgs