interface WarmThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cassandra.CfnTable.WarmThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscassandra#CfnTable_WarmThroughputProperty |
Java | software.amazon.awscdk.services.cassandra.CfnTable.WarmThroughputProperty |
Python | aws_cdk.aws_cassandra.CfnTable.WarmThroughputProperty |
TypeScript | aws-cdk-lib » aws_cassandra » CfnTable » WarmThroughputProperty |
Warm throughput configuration for the table.
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 warmThroughputProperty: cassandra.CfnTable.WarmThroughputProperty = {
readUnitsPerSecond: 123,
writeUnitsPerSecond: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| read | number | |
| write | number |
readUnitsPerSecond?
Type:
number
(optional)
writeUnitsPerSecond?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript