RowInBatchWriteRowResponse indicates the write operation result for a row in the response message of the BatchWriteRow operation.
Data structure
message RowInBatchWriteRowResponse {
required bool is_ok = 1 [default = true];
optional Error error = 2;
optional ConsumedCapacity consumed = 3;
}
is_ok:
-
Type: Bool
-
Determines whether the operation for this row is successful. If the value is true, the row is written successfully and error is invalid. If the value is false, the row fails to be written.
error:
-
Type: Error
-
The error message for this row operation.
consumed:
-
Type: ConsumedCapacity
-
The capacity units consumed by this row operation.