interface ProvisionedThroughputProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Cassandra.CfnTable.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscassandra#CfnTable_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.services.cassandra.CfnTable.ProvisionedThroughputProperty |
Python | aws_cdk.aws_cassandra.CfnTable.ProvisionedThroughputProperty |
TypeScript | aws-cdk-lib » aws_cassandra » CfnTable » 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-lib';
const provisionedThroughputProperty: cassandra.CfnTable.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
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
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 .