Class CfnTable.ProvisionedThroughputProperty
The provisioned throughput for the table, which consists of ReadCapacityUnits
and WriteCapacityUnits
.
Inheritance
System.Object
CfnTable.ProvisionedThroughputProperty
Implements
Namespace: Amazon.CDK.AWS.Cassandra
Assembly: Amazon.CDK.AWS.Cassandra.dll
Syntax (csharp)
public class ProvisionedThroughputProperty : Object, CfnTable.IProvisionedThroughputProperty
Syntax (vb)
Public Class ProvisionedThroughputProperty
Inherits Object
Implements CfnTable.IProvisionedThroughputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cassandra;
var provisionedThroughputProperty = new ProvisionedThroughputProperty {
ReadCapacityUnits = 123,
WriteCapacityUnits = 123
};
Synopsis
Constructors
ProvisionedThroughputProperty() |
Properties
ReadCapacityUnits | The amount of read capacity that's provisioned for the table. |
WriteCapacityUnits | The amount of write capacity that's provisioned for the table. |
Constructors
ProvisionedThroughputProperty()
public ProvisionedThroughputProperty()
Properties
ReadCapacityUnits
The amount of read capacity that's provisioned for the table.
public double ReadCapacityUnits { get; set; }
Property Value
System.Double
Remarks
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .
WriteCapacityUnits
The amount of write capacity that's provisioned for the table.
public double WriteCapacityUnits { get; set; }
Property Value
System.Double
Remarks
For more information, see Read/write capacity mode in the Amazon Keyspaces Developer Guide .