TableInBatchWriteRowResponse indicates the write results for a table in the BatchWriteRow operation.

Data structure

message TableInBatchWriteRowResponse {
    required string table_name = 1;
    repeated RowInBatchWriteRowResponse put_rows = 2;
    repeated RowInBatchWriteRowResponse update_rows = 3;
    repeated RowInBatchWriteRowResponse delete_rows = 4;
}
table_name:
  • Type: string

  • The name of the table.

put_rows:
update_rows:
delete_rows:

Related operations

BatchWriteRow