interface ProvisionedThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cassandra.CfnTablePropsMixin.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscassandra#CfnTablePropsMixin_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cassandra.CfnTablePropsMixin.ProvisionedThroughputProperty |
Python | aws_cdk.cfn_property_mixins.aws_cassandra.CfnTablePropsMixin.ProvisionedThroughputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cassandra » 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 { aws_cassandra as cassandra } from '@aws-cdk/cfn-property-mixins';
const provisionedThroughputProperty: cassandra.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