Table of Contents

Class ProvisionedThroughput

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the

UpdateTable
operation.

For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.

public class ProvisionedThroughput
Inheritance
ProvisionedThroughput
Inherited Members

Constructors

ProvisionedThroughput()

Empty constructor used to set properties independently even when a simple constructor is available

public ProvisionedThroughput()

ProvisionedThroughput(long, long)

Instantiates ProvisionedThroughput with the parameterized properties

public ProvisionedThroughput(long readCapacityUnits, long writeCapacityUnits)

Parameters

readCapacityUnits long

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a

ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. If read/write capacity mode is
PAY_PER_REQUEST
the value is set to 0.
writeCapacityUnits long

The maximum number of writes consumed per second before DynamoDB returns a

ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. If read/write capacity mode is
PAY_PER_REQUEST
the value is set to 0.

Properties

ReadCapacityUnits

Gets and sets the property ReadCapacityUnits.

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a

ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is

PAY_PER_REQUEST
the value is set to 0.
public long ReadCapacityUnits { get; set; }

Property Value

long

WriteCapacityUnits

Gets and sets the property WriteCapacityUnits.

The maximum number of writes consumed per second before DynamoDB returns a

ThrottlingException
. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is

PAY_PER_REQUEST
the value is set to 0.
public long WriteCapacityUnits { get; set; }

Property Value

long