日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

文檔

RowInBatchGetRowResponse

更新時間:

在BatchGetRow操作的返回消息中表示一行數據。

數據結構

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

bool

該行操作是否成功。

  • 如果返回值為true,則該行讀取成功,error無效。

  • 如果返回值為false,則該行讀取失敗,row無效。

error

Error

該行操作的錯誤信息。

consumed

ConsumedCapacity

該行操作消耗的服務能力單元。

row

bytes

讀取到的數據,由Plainbuffer編碼,詳見Plainbuffe編碼。

如果該行不存在,則數據為空。

next_token

bytes

寬行讀取時,下一次讀取的起始位置,暫不可用。

相關操作

BatchGetRow