Hi Mark,
Thanks for the great Lex/Lambda Framework. I've used this to get myself going with Lex and Lambda (coupled with the https://github.com/awslabs/aws-serverless-java-container Spring Boot starter) and it works a charm!
Just thought I'd let you know that there's a small compile issue in the HelloBotRequestHandler class.
In the processHelloIntent method - I think you need to replace :
return createDelegateDialogActionResponse(lexRequest);
with :
return createDelegateDialogActionResponse(lexRequest.getIntent().getSlots());
Hi Mark,
Thanks for the great Lex/Lambda Framework. I've used this to get myself going with Lex and Lambda (coupled with the https://github.com/awslabs/aws-serverless-java-container Spring Boot starter) and it works a charm!
Just thought I'd let you know that there's a small compile issue in the HelloBotRequestHandler class.
In the processHelloIntent method - I think you need to replace :
return createDelegateDialogActionResponse(lexRequest);
with :
return createDelegateDialogActionResponse(lexRequest.getIntent().getSlots());