All Products
Search
Document Center

Tablestore:ActionType

Last Updated:Apr 29, 2026

Defines the operation type of a record in a GetStreamRecord response.

Enumeration values

  • PUT_ROW: the row was written by PutRow.

  • UPDATE_ROW: the row was modified by UpdateRow.

  • DELETE_ROW: the row was deleted by DeleteRow.

enum ActionType {
    PUT_ROW = 1;
    UPDATE_ROW = 2;
    DELETE_ROW = 3;
}

Related operations

GetStreamRecord