@Stability(value=Stable)
public static interface CfnTable.ProvisionedThroughputProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Number |
getReadCapacityUnits()
The amount of read capacity that's provisioned for the table.
|
Number |
getWriteCapacityUnits()
The amount of write capacity that's provisioned for the table.
|
@Stability(value=Stable) @NotNull Number getReadCapacityUnits()
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
@Stability(value=Stable) @NotNull Number getWriteCapacityUnits()
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
@Stability(value=Stable) static CfnTable.ProvisionedThroughputProperty.Builder builder()
Copyright © 2022. All rights reserved.