interface ProvisionedThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnTablePropsMixin_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnTablePropsMixin » ProvisionedThroughputProperty |
Throughput for the specified table, which consists of values for ReadCapacityUnits and WriteCapacityUnits .
For more information about the contents of a provisioned throughput structure, see Amazon DynamoDB Table ProvisionedThroughput .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const provisionedThroughputProperty: dynamodb_mixins.CfnTablePropsMixin.ProvisionedThroughputProperty = {
readCapacityUnits: 123,
writeCapacityUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| read | number | The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException . |
| write | number | The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException . |
readCapacityUnits?
Type:
number
(optional)
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException .
For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide .
If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.
writeCapacityUnits?
Type:
number
(optional)
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException .
For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide .
If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.

.NET
Go
Java
Python
TypeScript