Resolver Sync Config Args
data class ResolverSyncConfigArgs(val conflictDetection: Output<String>? = null, val conflictHandler: Output<String>? = null, val lambdaConflictHandlerConfig: Output<ResolverSyncConfigLambdaConflictHandlerConfigArgs>? = null) : ConvertibleToJava<ResolverSyncConfigArgs>
Constructors
Link copied to clipboard
constructor(conflictDetection: Output<String>? = null, conflictHandler: Output<String>? = null, lambdaConflictHandlerConfig: Output<ResolverSyncConfigLambdaConflictHandlerConfigArgs>? = null)
Properties
Link copied to clipboard
Conflict Detection strategy to use. Valid values are NONE and VERSION.
Link copied to clipboard
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.