interface ReadOnDemandThroughputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.ReadOnDemandThroughputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_ReadOnDemandThroughputSettingsProperty |
Java | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.ReadOnDemandThroughputSettingsProperty |
Python | aws_cdk.aws_dynamodb.CfnGlobalTable.ReadOnDemandThroughputSettingsProperty |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnGlobalTable » ReadOnDemandThroughputSettingsProperty |
Sets the read request settings for a replica table or a replica global secondary index.
You can only specify this setting if your resource uses the PAY_PER_REQUEST BillingMode .
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 readOnDemandThroughputSettingsProperty: dynamodb.CfnGlobalTable.ReadOnDemandThroughputSettingsProperty = {
maxReadRequestUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | Maximum number of read request units for the specified replica of a global table. |
maxReadRequestUnits?
Type:
number
(optional)
Maximum number of read request units for the specified replica of a global table.

.NET
Go
Java
Python
TypeScript