using Amazon.Lambda.Core; using Amazon.Lambda.LexEvents; namespace BlueprintBaseName._1; /// /// Represents an intent processor that the Lambda function will invoke to process the event. /// public interface IIntentProcessor { /// /// Main method for processing the Lex event for the intent. /// /// /// /// LexResponse Process(LexEvent lexEvent, ILambdaContext context); }