Interface CfnFunctionConfiguration.SyncConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionConfiguration.SyncConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunctionConfiguration

@Stability(Stable) public static interface CfnFunctionConfiguration.SyncConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes a Sync configuration for a resolver.

Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 SyncConfigProperty syncConfigProperty = SyncConfigProperty.builder()
         .conflictDetection("conflictDetection")
         // the properties below are optional
         .conflictHandler("conflictHandler")
         .lambdaConflictHandlerConfig(LambdaConflictHandlerConfigProperty.builder()
                 .lambdaConflictHandlerArn("lambdaConflictHandlerArn")
                 .build())
         .build();
 

See Also: