Interface CfnResolverPropsMixin.ISyncConfigProperty
Describes a Sync configuration for a resolver.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnResolverPropsMixin.ISyncConfigProperty
Syntax (vb)
Public Interface CfnResolverPropsMixin.ISyncConfigProperty
Remarks
Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins;
var syncConfigProperty = new SyncConfigProperty {
ConflictDetection = "conflictDetection",
ConflictHandler = "conflictHandler",
LambdaConflictHandlerConfig = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
}
};
Synopsis
Properties
| ConflictDetection | The Conflict Detection strategy to use. |
| ConflictHandler | The Conflict Resolution strategy to perform in the event of a conflict. |
| LambdaConflictHandlerConfig | The |
Properties
ConflictDetection
The Conflict Detection strategy to use.
string? ConflictDetection { get; }
Property Value
Remarks
ConflictHandler
The Conflict Resolution strategy to perform in the event of a conflict.
string? ConflictHandler { get; }
Property Value
Remarks
LambdaConflictHandlerConfig
The LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.
object? LambdaConflictHandlerConfig { get; }