Defines the replication mode across instances. - ASYNCHRONOUS: Propagates updates to other instances without waiting for confirmation. Offers higher performance but may result in temporary data inconsistencies during replication delays. - STRICTLY_SYNCHRONOUS: Only supported for clusters with at least 3 instances. Requires all instances to acknowledge the update before it is committed, guaranteeing strong consistency at the cost of potential performance impact in high-latency environments.
-
ASYNCHRONOUS(value:'ASYNCHRONOUS') -
STRICTLY_SYNCHRONOUS(value:'STRICTLY_SYNCHRONOUS')