All Products
Search
Document Center

Tablestore:RowInBulkImportResponse

Last Updated:May 31, 2024

RowInBulkImportResponse specifies the result of a batch write operation in the response to the BulkImport operation.

Data structure

message RowInBulkImportResponse {
    required bool is_ok = 1;
    optional Error error = 2;
    optional ConsumedCapacity consumed = 3;
}

Parameter

Type

Required

Description

is_ok

bool

Yes

Indicates whether the row was written to the table. Valid values:

  • true (default): 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.

Related operations

BulkImport