Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-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.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 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-resolver-syncconfig.html#cfn-appsync-resolver-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-resolver-syncconfig.html#cfn-appsync-resolver-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-resolver-syncconfig.html#cfn-appsync-resolver-syncconfig-lambdaconflicthandlerconfig

      Type union: either IResolvable or CfnResolverPropsMixin.ILambdaConflictHandlerConfigProperty

      Back to top Generated by DocFX