AwsDynamodbWarmThroughputArgs

interface AwsDynamodbWarmThroughputArgs { readUnitsPerSecond?: number; writeUnitsPerSecond?: number; }

Optional warm throughput settings for table or GSI configuration.

Example

CODE
const warmThroughput: AwsDynamodbWarmThroughputArgs = {
  readUnitsPerSecond: 12000,
  writeUnitsPerSecond: 4000,
};

Properties

readUnitsPerSecond: number

Warm read units per second. Must be an integer greater than or equal to 1.

writeUnitsPerSecond: number

Warm write units per second. Must be an integer greater than or equal to 1.