Show / Hide Table of Contents

Class CfnTable.ProvisionedThroughputProperty

The provisioned throughput for the table, which consists of ReadCapacityUnits and WriteCapacityUnits .

Inheritance
System.Object
CfnTable.ProvisionedThroughputProperty
Implements
CfnTable.IProvisionedThroughputProperty
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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-readcapacityunits

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-provisionedthroughput.html#cfn-cassandra-table-provisionedthroughput-writecapacityunits

Implements

CfnTable.IProvisionedThroughputProperty
Back to top Generated by DocFX