This is helpful when your application is serverless and you want to send some data through http post request and before saving into database you need to process the data or use it to get some other result and then save it. AWS Lambda function plays this role of handling the data which is received through API Gateway. API Gateway sends the result of lambda function as a response to the request made which can be either a custom POJO or a simple confirmation string.
utsavrai/Integrating-AWS-API-Gateway-with-AWS-Lambda-Function
This example is helpful when your application is server-less and you want to send some data through http post request and before saving into database you need to process the data or use it to get some other result and then save it. AWS Lambda function plays this role of handling the data which is received through API Gateway. API Gateway sends the result of lambda function as a response to the request made which can be either a custom POJO or a simple confirmation string.
Java