interface LambdaConflictHandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnResolverPropsMixin.LambdaConflictHandlerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnResolverPropsMixin_LambdaConflictHandlerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnResolverPropsMixin.LambdaConflictHandlerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnResolverPropsMixin.LambdaConflictHandlerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnResolverPropsMixin » 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 { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const lambdaConflictHandlerConfigProperty: appsync.CfnResolverPropsMixin.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
Go
Java
Python
TypeScript