Class CfnResolverPropsMixin.SyncConfigProperty
Describes a Sync configuration for a resolver.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnResolverPropsMixin.SyncConfigProperty : CfnResolverPropsMixin.ISyncConfigProperty
Syntax (vb)
Public Class CfnResolverPropsMixin.SyncConfigProperty Implements 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.CfnPropertyMixins.AWS.AppSync;
var syncConfigProperty = new SyncConfigProperty {
ConflictDetection = "conflictDetection",
ConflictHandler = "conflictHandler",
LambdaConflictHandlerConfig = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
}
};
Synopsis
Constructors
| SyncConfigProperty() | Describes a Sync configuration for a resolver. |
Properties
| ConflictDetection | The Conflict Detection strategy to use. |
| ConflictHandler | The Conflict Resolution strategy to perform in the event of a conflict. |
| LambdaConflictHandlerConfig | The |
Constructors
SyncConfigProperty()
Describes a Sync configuration for a resolver.
public SyncConfigProperty()
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.CfnPropertyMixins.AWS.AppSync;
var syncConfigProperty = new SyncConfigProperty {
ConflictDetection = "conflictDetection",
ConflictHandler = "conflictHandler",
LambdaConflictHandlerConfig = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
}
};
Properties
ConflictDetection
The Conflict Detection strategy to use.
public string? ConflictDetection { get; set; }
Property Value
Remarks
ConflictHandler
The Conflict Resolution strategy to perform in the event of a conflict.
public string? ConflictHandler { get; set; }
Property Value
Remarks
LambdaConflictHandlerConfig
The LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.
public object? LambdaConflictHandlerConfig { get; set; }