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