public class ConsumedCapacity
extends java.lang.Object
implements java.io.Serializable
The table name that consumed provisioned throughput, and the number of capacity units consumed by it. ConsumedCapacity is only returned if it was asked for in the request. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.
| コンストラクタと説明 |
|---|
ConsumedCapacity() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Double |
getCapacityUnits()
The total number of capacity units consumed.
|
java.lang.String |
getTableName()
The table that consumed the provisioned throughput.
|
int |
hashCode() |
void |
setCapacityUnits(java.lang.Double capacityUnits)
The total number of capacity units consumed.
|
void |
setTableName(java.lang.String tableName)
The table that consumed the provisioned throughput.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ConsumedCapacity |
withCapacityUnits(java.lang.Double capacityUnits)
The total number of capacity units consumed.
|
ConsumedCapacity |
withTableName(java.lang.String tableName)
The table that consumed the provisioned throughput.
|
public java.lang.String getTableName()
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
public void setTableName(java.lang.String tableName)
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
tableName - The table that consumed the provisioned throughput.public ConsumedCapacity withTableName(java.lang.String tableName)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
tableName - The table that consumed the provisioned throughput.public java.lang.Double getCapacityUnits()
public void setCapacityUnits(java.lang.Double capacityUnits)
capacityUnits - The total number of capacity units consumed.public ConsumedCapacity withCapacityUnits(java.lang.Double capacityUnits)
Returns a reference to this object so that method calls can be chained together.
capacityUnits - The total number of capacity units consumed.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object