interface LambdaConflictHandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnFunctionConfigurationPropsMixin_LambdaConflictHandlerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnFunctionConfigurationPropsMixin » LambdaConflictHandlerConfigProperty |
The LambdaConflictHandlerConfig object 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.CfnFunctionConfigurationPropsMixin.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