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