Show / Hide Table of Contents

Interface CfnFunctionConfiguration.ISyncConfigProperty

Describes a Sync configuration for a resolver.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFunctionConfiguration.ISyncConfigProperty
Syntax (vb)
Public Interface CfnFunctionConfiguration.ISyncConfigProperty
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-syncconfig.html

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.AWS.AppSync;

             var syncConfigProperty = new SyncConfigProperty {
                 ConflictDetection = "conflictDetection",

                 // the properties below are optional
                 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 LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.

Properties

ConflictDetection

The Conflict Detection strategy to use.

string ConflictDetection { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-syncconfig.html#cfn-appsync-functionconfiguration-syncconfig-conflictdetection

    ConflictHandler

    The Conflict Resolution strategy to perform in the event of a conflict.

    string? ConflictHandler { get; }
    Property Value

    string

    Remarks

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-syncconfig.html#cfn-appsync-functionconfiguration-syncconfig-conflicthandler

      LambdaConflictHandlerConfig

      The LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.

      object? LambdaConflictHandlerConfig { get; }
      Property Value

      object

      Remarks

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-syncconfig.html#cfn-appsync-functionconfiguration-syncconfig-lambdaconflicthandlerconfig

      Type union: either IResolvable or CfnFunctionConfiguration.ILambdaConflictHandlerConfigProperty

      Back to top Generated by DocFX