FunctionSyncConfig

data class FunctionSyncConfig(val conflictDetection: String? = null, val conflictHandler: String? = null, val lambdaConflictHandlerConfig: FunctionSyncConfigLambdaConflictHandlerConfig? = null)

Constructors

Link copied to clipboard
constructor(conflictDetection: String? = null, conflictHandler: String? = null, lambdaConflictHandlerConfig: FunctionSyncConfigLambdaConflictHandlerConfig? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Conflict Detection strategy to use. Valid values are NONE and VERSION.

Link copied to clipboard
val conflictHandler: String? = null

Conflict Resolution strategy to perform in the event of a conflict. Valid values are NONE, OPTIMISTIC_CONCURRENCY, AUTOMERGE, and LAMBDA.

Link copied to clipboard

Lambda Conflict Handler Config when configuring LAMBDA as the Conflict Handler. See Lambda Conflict Handler Config.