Interface CfnTable.ProvisionedThroughputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.ProvisionedThroughputProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.ProvisionedThroughputProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cassandra.*;
ProvisionedThroughputProperty provisionedThroughputProperty = ProvisionedThroughputProperty.builder()
.readCapacityUnits(123)
.writeCapacityUnits(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.ProvisionedThroughputPropertystatic final classAn implementation forCfnTable.ProvisionedThroughputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The amount of read capacity that's provisioned for the table.The amount of write capacity that's provisioned for the table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReadCapacityUnits
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 .
- See Also:
-
getWriteCapacityUnits
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 .
- See Also:
-
builder
-