Function Sync Config Args
data class FunctionSyncConfigArgs(val conflictDetection: Output<String>? = null, val conflictHandler: Output<String>? = null, val lambdaConflictHandlerConfig: Output<FunctionSyncConfigLambdaConflictHandlerConfigArgs>? = null) : ConvertibleToJava<FunctionSyncConfigArgs>
Constructors
Link copied to clipboard
constructor(conflictDetection: Output<String>? = null, conflictHandler: Output<String>? = null, lambdaConflictHandlerConfig: Output<FunctionSyncConfigLambdaConflictHandlerConfigArgs>? = 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.