RowInBatchGetRowResponse indicates a data row in the response message of the BatchGetRow operation.

Data structure

message RowInBatchGetRowResponse {
    required bool is_ok = 1 [default = true];
    optional Error error = 2;
    optional ConsumedCapacity consumed = 3;
    optional bytes row = 4; 
	optional bytes next_token = 5;
}
is_ok:
  • Type: Bool

  • Determines whether the operation for this row is successful. If the value is true, the row is read successfully and error is invalid. If the value is false, this row fails to be read and row is invalid.

error:
  • Type: Error

  • The error message for this row operation.

consumed:
row:
  • Type: Bytes

  • The read data is encoded in Plainbuffer format. For more information, see Plainbuffer encoding.

  • If this row does not exist, null is returned.

next_token:
  • Type: Bytes

  • It indicates the starting position of a wide row to be read during the next operation of which is unavailable currently.

Related operations

BatchGetRow