RowInBatchWriteRowResponse indicates the write operation result for a row in the response of the BatchWriteRow operation.
Data structure
message RowInBatchWriteRowResponse {
required bool is_ok = 1; // [default = true]
optional Error error = 2;
optional ConsumedCapacity consumed = 3;
optional bytes row = 4;
}
Parameter | Type | Required | Description |
is_ok | bool | Yes | Indicates whether the row was written to the table. Valid values:
|
error | No | The error message for the row operation. | |
consumed | No | The capacity units consumed by the row operation. | |
row | bytes | No | The row that failed to be written to the table. The row is encoded in the PlainBuffer format. For more information about PlainBuffer, see PlainBuffer. |