Provisioned throughput reserves the required read and write resources for your table in terms of ReadCapacityUnits and WriteCapacityUnits . Values for provisioned throughput depend upon your expected read/write rates, item size, and consistency. Provide the expected number of read and write operations, assuming an item size of 1k and strictly consistent reads. For 2k item size, double the value. For 3k, triple the value, etc. Eventually-consistent reads consume half the resources of strictly consistent reads.

Namespace: Amazon.DynamoDB.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class ProvisionedThroughput
Public Class ProvisionedThroughput
public ref class ProvisionedThroughput

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ProvisionedThroughput()()()()
Initializes a new instance of the ProvisionedThroughput class
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
ReadCapacityUnits
ReadCapacityUnits are in terms of strictly consistent reads, assuming items of 1k. 2k items require twice the ReadCapacityUnits. Eventually-consistent reads only require half the ReadCapacityUnits of stirctly consistent reads.

Constraints:

Range
1 -

ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithReadCapacityUnits(Int64)
Sets the ReadCapacityUnits property
WithWriteCapacityUnits(Int64)
Sets the WriteCapacityUnits property
WriteCapacityUnits
WriteCapacityUnits are in terms of strictly consistent reads, assuming items of 1k. 2k items require twice the WriteCapacityUnits.

Constraints:

Range
1 -

Inheritance Hierarchy

System..::..Object
  Amazon.DynamoDB.Model..::..ProvisionedThroughput

See Also