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.

コード例 #1
0
ファイル: QueryResult.cs プロジェクト: skilitics/aws-sdk-net
 /// <summary>
 /// Sets the ConsumedCapacity property
 /// </summary>
 /// <param name="consumedCapacity">The value to set for the ConsumedCapacity property </param>
 /// <returns>this instance</returns>
 public QueryResult WithConsumedCapacity(ConsumedCapacity consumedCapacity)
 {
     this.consumedCapacity = consumedCapacity;
     return this;
 }
コード例 #2
0
 public GetItemResult WithConsumedCapacity(ConsumedCapacity consumedCapacity)
 {
     this.consumedCapacity = consumedCapacity;
     return this;
 }
コード例 #3
0
 /// <summary>
 /// Sets the ConsumedCapacity property
 /// </summary>
 /// <param name="consumedCapacity">The value to set for the ConsumedCapacity property </param>
 /// <returns>this instance</returns>
 public GetItemResult WithConsumedCapacity(ConsumedCapacity consumedCapacity)
 {
     this.consumedCapacity = consumedCapacity;
     return(this);
 }
コード例 #4
0
 /// <summary>
 /// Sets the ConsumedCapacity property
 /// </summary>
 /// <param name="consumedCapacity">The value to set for the ConsumedCapacity property </param>
 /// <returns>this instance</returns>
 public ScanResult WithConsumedCapacity(ConsumedCapacity consumedCapacity)
 {
     this.consumedCapacity = consumedCapacity;
     return(this);
 }