aws-cdk-lib.aws_cassandra.CfnTable.ProvisionedThroughputProperty

interface ProvisionedThroughputProperty

LanguageType name
.NETAmazon.CDK.AWS.Cassandra.CfnTable.ProvisionedThroughputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscassandra#CfnTable_ProvisionedThroughputProperty
Javasoftware.amazon.awscdk.services.cassandra.CfnTable.ProvisionedThroughputProperty
Pythonaws_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

NameTypeDescription
readCapacityUnitsnumberThe amount of read capacity that's provisioned for the table.
writeCapacityUnitsnumberThe 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 .