interface WarmThroughputProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.WarmThroughputProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_WarmThroughputProperty |
![]() | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.WarmThroughputProperty |
![]() | aws_cdk.aws_dynamodb.CfnGlobalTable.WarmThroughputProperty |
![]() | aws-cdk-lib » aws_dynamodb » CfnGlobalTable » 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.CfnGlobalTable.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.