interface LambdaConflictHandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnResolver.LambdaConflictHandlerConfigProperty |
Java | software.amazon.awscdk.services.appsync.CfnResolver.LambdaConflictHandlerConfigProperty |
Python | aws_cdk.aws_appsync.CfnResolver.LambdaConflictHandlerConfigProperty |
TypeScript | @aws-cdk/aws-appsync » CfnResolver » LambdaConflictHandlerConfigProperty |
The LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appsync from '@aws-cdk/aws-appsync';
const lambdaConflictHandlerConfigProperty: appsync.CfnResolver.LambdaConflictHandlerConfigProperty = {
lambdaConflictHandlerArn: 'lambdaConflictHandlerArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| lambda | string | The Amazon Resource Name (ARN) for the Lambda function to use as the Conflict Handler. |
lambdaConflictHandlerArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the Lambda function to use as the Conflict Handler.

.NET
Java
Python
TypeScript