Show / Hide Table of Contents

Class CfnResolverPropsMixin.SyncConfigProperty

Describes a Sync configuration for a resolver.

Inheritance
object
CfnResolverPropsMixin.SyncConfigProperty
Implements
CfnResolverPropsMixin.ISyncConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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.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 LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.

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.

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.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

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.

    public string? ConflictHandler { get; set; }
    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.

      public object? LambdaConflictHandlerConfig { get; set; }
      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

      Implements

      CfnResolverPropsMixin.ISyncConfigProperty
      Back to top Generated by DocFX