interface WarmThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnTable.WarmThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnTable_WarmThroughputProperty |
Java | software.amazon.awscdk.services.dynamodb.CfnTable.WarmThroughputProperty |
Python | aws_cdk.aws_dynamodb.CfnTable.WarmThroughputProperty |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnTable » WarmThroughputProperty |
Provides visibility into the number of read and write operations your table or secondary index can instantaneously support.
The settings can be modified using the UpdateTable operation to meet the throughput requirements of an upcoming peak event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const warmThroughputProperty: dynamodb.CfnTable.WarmThroughputProperty = {
readUnitsPerSecond: 123,
writeUnitsPerSecond: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| read | number | Represents the number of read operations your base table can instantaneously support. |
| write | number | Represents the number of write operations your base table can instantaneously support. |
readUnitsPerSecond?
Type:
number
(optional)
Represents the number of read operations your base table can instantaneously support.
writeUnitsPerSecond?
Type:
number
(optional)
Represents the number of write operations your base table can instantaneously support.

.NET
Go
Java
Python
TypeScript