Class ConsumedCapacity
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
The capacity units consumed by an operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation.
ConsumedCapacity
is only returned if the request
asked for it. For more information, see Provisioned
Throughput in the Amazon DynamoDB Developer Guide.
public class ConsumedCapacity
- Inheritance
-
ConsumedCapacity
- Inherited Members
Constructors
ConsumedCapacity()
public ConsumedCapacity()
Properties
CapacityUnits
Gets and sets the property CapacityUnits.
The total number of capacity units consumed by the operation.
public double CapacityUnits { get; set; }
Property Value
GlobalSecondaryIndexes
Gets and sets the property GlobalSecondaryIndexes.
The amount of throughput consumed on each global index affected by the operation.
public Dictionary<string, Capacity> GlobalSecondaryIndexes { get; set; }
Property Value
LocalSecondaryIndexes
Gets and sets the property LocalSecondaryIndexes.
The amount of throughput consumed on each local index affected by the operation.
public Dictionary<string, Capacity> LocalSecondaryIndexes { get; set; }
Property Value
ReadCapacityUnits
Gets and sets the property ReadCapacityUnits.
The total number of read capacity units consumed by the operation.
public double ReadCapacityUnits { get; set; }
Property Value
Table
Gets and sets the property Table.
The amount of throughput consumed on the table affected by the operation.
public Capacity Table { get; set; }
Property Value
TableName
Gets and sets the property TableName.
The name of the table that was affected by the operation.
public string TableName { get; set; }
Property Value
WriteCapacityUnits
Gets and sets the property WriteCapacityUnits.
The total number of write capacity units consumed by the operation.
public double WriteCapacityUnits { get; set; }