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. Default value: true. Valid values:
  • true: The row was written to the table.
  • false: The row failed to be written to the table.
error Error No The error message for the row operation.
consumed ConsumedCapacity 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, see PlainBuffer.

Related operations

BatchWriteRow