public static interface CfnTable.ProvisionedThroughputProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTable.ProvisionedThroughputProperty.Builder
A builder for
CfnTable.ProvisionedThroughputProperty |
static class |
CfnTable.ProvisionedThroughputProperty.Jsii$Proxy
An implementation for
CfnTable.ProvisionedThroughputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTable.ProvisionedThroughputProperty.Builder |
builder() |
java.lang.Number |
getReadCapacityUnits()
The amount of read capacity that's provisioned for the table.
|
java.lang.Number |
getWriteCapacityUnits()
The amount of write capacity that's provisioned for the table.
|
java.lang.Number getReadCapacityUnits()
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
java.lang.Number getWriteCapacityUnits()
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
static CfnTable.ProvisionedThroughputProperty.Builder builder()