interface WriteOnDemandThroughputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnGlobalTablePropsMixin.WriteOnDemandThroughputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnGlobalTablePropsMixin_WriteOnDemandThroughputSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnGlobalTablePropsMixin.WriteOnDemandThroughputSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnGlobalTablePropsMixin.WriteOnDemandThroughputSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnGlobalTablePropsMixin » WriteOnDemandThroughputSettingsProperty |
Sets the write request settings for a global table or a 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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const writeOnDemandThroughputSettingsProperty: dynamodb_mixins.CfnGlobalTablePropsMixin.WriteOnDemandThroughputSettingsProperty = {
maxWriteRequestUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | Maximum number of write request settings for the specified replica of a global table. |
maxWriteRequestUnits?
Type:
number
(optional)
Maximum number of write request settings for the specified replica of a global table.

.NET
Go
Java
Python
TypeScript