interface ProvisionedThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cassandra.Mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscassandra/mixins#CfnTablePropsMixin_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.mixins.preview.services.cassandra.mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
Python | aws_cdk.mixins_preview.aws_cassandra.mixins.CfnTablePropsMixin.ProvisionedThroughputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cassandra » mixins » CfnTablePropsMixin » ProvisionedThroughputProperty |
The provisioned throughput for the table, which consists of ReadCapacityUnits and WriteCapacityUnits .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cassandra_mixins } from '@aws-cdk/mixins-preview/aws-cassandra';
const provisionedThroughputProperty: cassandra_mixins.CfnTablePropsMixin.ProvisionedThroughputProperty = {
readCapacityUnits: 123,
writeCapacityUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| read | number | The amount of read capacity that's provisioned for the table. |
| write | number | The amount of write capacity that's provisioned for the table. |
readCapacityUnits?
Type:
number
(optional)
The amount of read capacity that's provisioned for the table.
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
writeCapacityUnits?
Type:
number
(optional)
The amount of write capacity that's provisioned for the table.
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .

.NET
Go
Java
Python
TypeScript