Class ProvisionedThroughputDescription
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents the provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
public class ProvisionedThroughputDescription
- Inheritance
-
ProvisionedThroughputDescription
- Inherited Members
Constructors
ProvisionedThroughputDescription()
public ProvisionedThroughputDescription()
Properties
LastDecreaseDateTime
Gets and sets the property LastDecreaseDateTime.
The date and time of the last provisioned throughput decrease for this table.
public DateTime LastDecreaseDateTime { get; set; }
Property Value
LastIncreaseDateTime
Gets and sets the property LastIncreaseDateTime.
The date and time of the last provisioned throughput increase for this table.
public DateTime LastIncreaseDateTime { get; set; }
Property Value
NumberOfDecreasesToday
Gets and sets the property NumberOfDecreasesToday.
The number of provisioned throughput decreases for this table during this UTC calendar day. For current maximums on provisioned throughput decreases, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
public long NumberOfDecreasesToday { get; set; }
Property Value
ReadCapacityUnits
Gets and sets the property ReadCapacityUnits.
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException
. Eventually consistent reads require less
effort than strongly consistent reads, so a setting of 50 ReadCapacityUnits
per second provides 100 eventually consistent ReadCapacityUnits
per second.
public long ReadCapacityUnits { get; set; }
Property Value
WriteCapacityUnits
Gets and sets the property WriteCapacityUnits.
The maximum number of writes consumed per second before DynamoDB returns a
ThrottlingException
.
public long WriteCapacityUnits { get; set; }