interface LambdaConflictHandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnFunctionConfigurationPropsMixin_LambdaConflictHandlerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnFunctionConfigurationPropsMixin.LambdaConflictHandlerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const lambdaConflictHandlerConfigProperty: appsync_mixins.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