TableOnDemandThroughputArgs

data class TableOnDemandThroughputArgs(val maxReadRequestUnits: Output<Int>? = null, val maxWriteRequestUnits: Output<Int>? = null) : ConvertibleToJava<TableOnDemandThroughputArgs>

Sets the maximum number of read and write units for the specified on-demand table. If you use this property, you must specify `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.

Constructors

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

Properties

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

Maximum number of read request units for the specified table. To specify a maximum `OnDemandThroughput` on your table, set the value of `MaxReadRequestUnits` as greater than or equal to 1. To remove the maximum `OnDemandThroughput` that is currently set on your table, set the value of `MaxReadRequestUnits` to -1.

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

Maximum number of write request units for the specified table. To specify a maximum `OnDemandThroughput` on your table, set the value of `MaxWriteRequestUnits` as greater than or equal to 1. To remove the maximum `OnDemandThroughput` that is currently set on your table, set the value of `MaxWriteRequestUnits` to -1.

Functions

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