I am new to AWS Lambdabut sure I see its advantages and stumbled upon an excellent infrastructure Serverlessto help me build solutions on Lambda.
I started creating solutions using AWS APIGateway, but I really need "internal" VPC APIand not a public API for working on the Internet, which creates the GW API.
I found that it Servlessreally can provide an endpoint, HTTPbut I canβt understand how this is done and how the URL is created. When I deploy Lambda from Serverless, it gives me a URL, for example:
https://uxezd6ry8z.execute-api.eu-west-1.amazonaws.com/dev/ping
I would like to be able to find (or create) the same http listener for existing ones, Lambdasso my question is how is the URLactual HTTPlistener created and where is it deployed ?
source
share