The SyncMode data type defines the data synchronization pattern for a global table.
Data structure
SYNC_MODE_ROW: Row-level synchronization. Data is synchronized on a per-row basis, and each row modification is independently replicated to other regions. Currently, only row-level synchronization is supported.
SYNC_MODE_COLUMN: Column-level synchronization.
enum SyncMode {
SYNC_MODE_ROW = 1;
SYNC_MODE_COLUMN = 2;
}