interface WarmThroughput
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DynamoDB.WarmThroughput | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#WarmThroughput | 
  Java | software.amazon.awscdk.services.dynamodb.WarmThroughput | 
  Python | aws_cdk.aws_dynamodb.WarmThroughput | 
  TypeScript (source) | aws-cdk-lib » aws_dynamodb » WarmThroughput | 
Reference to WarmThroughput for a DynamoDB table.
Example
const table = new dynamodb.TableV2(this, 'Table', {
  partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING },
  warmThroughput: {
      readUnitsPerSecond: 15000,
      writeUnitsPerSecond: 20000,
    },
});
Properties
| Name | Type | Description | 
|---|---|---|
| read | number | Configures the number of read units per second a table will be able to handle instantly. | 
| write | number | Configures the number of write units per second a table will be able to handle instantly. | 
readUnitsPerSecond?
Type:
number
(optional, default: no readUnitsPerSecond configured)
Configures the number of read units per second a table will be able to handle instantly.
writeUnitsPerSecond?
Type:
number
(optional, default: no writeUnitsPerSecond configured)
Configures the number of write units per second a table will be able to handle instantly.

 .NET
 Go
 Java
 Python
 TypeScript (