RowExistenceExpectations includes conditions for row existence in enumeration type. The conditions include:

  • IGNORE, which indicates that the row existence check is not performed.

  • EXPECT_EXIST, which indicates that the row is expected to exist.

  • EXPECT_NOT_EXIST, which indicates that this row is not expected to exist.

Enumeration value list

enum RowExistenceExpectation {
    IGNORE = 0;
    EXPECT_EXIST = 1;
    EXPECT_NOT_EXIST = 2;
}

Related operations

PutRow

UpdateRow

DeleteRow

BatchWriteRow