Defines the data synchronization pattern for a global table.
Data structure
SYNC_MODE_ROW: Row-level synchronization. Each row modification is independently replicated to other regions. Currently, this is the only supported mode.
SYNC_MODE_COLUMN: Column-level synchronization.
enum SyncMode {
SYNC_MODE_ROW = 1;
SYNC_MODE_COLUMN = 2;
}