Class CfnFunctionConfiguration.LambdaConflictHandlerConfigProperty
The LambdaConflictHandlerConfig object when configuring LAMBDA as the Conflict Handler.
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunctionConfiguration.LambdaConflictHandlerConfigProperty : CfnFunctionConfiguration.ILambdaConflictHandlerConfigProperty
Syntax (vb)
Public Class CfnFunctionConfiguration.LambdaConflictHandlerConfigProperty Implements CfnFunctionConfiguration.ILambdaConflictHandlerConfigProperty
Remarks
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 lambdaConflictHandlerConfigProperty = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
};
Synopsis
Constructors
| LambdaConflictHandlerConfigProperty() | The |
Properties
| LambdaConflictHandlerArn | The Amazon Resource Name (ARN) for the Lambda function to use as the Conflict Handler. |
Constructors
LambdaConflictHandlerConfigProperty()
The LambdaConflictHandlerConfig object when configuring LAMBDA as the Conflict Handler.
public LambdaConflictHandlerConfigProperty()
Remarks
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 lambdaConflictHandlerConfigProperty = new LambdaConflictHandlerConfigProperty {
LambdaConflictHandlerArn = "lambdaConflictHandlerArn"
};
Properties
LambdaConflictHandlerArn
The Amazon Resource Name (ARN) for the Lambda function to use as the Conflict Handler.
public string? LambdaConflictHandlerArn { get; set; }