I am having a use case where I need to invoke a Rest API which is deployed/running on my local-machine (locahost:8090) from an AWS Lambda Function which will get triggered on an SQS event.
I cannot go with API Gateway Option. I am able to invoke the same API using the IP address from POSTMAN, can I use some Rest Client Like HttpClient or RestTemplate to invoke the same API using the IP address.
Also do I need to have some policy attached to my Lambda function, as when I am calling using HttpClient my Lambda function timesout.