How to get the "endpoint" of the expanded Lambda function in AWS?

I am developing a serverless application using a serverless platform . I deployed my application using

$ serverless deploy

After deployment, I got endpoints for my functions that look like

https://ly5webovq4.execute-api.us-east-1.amazonaws.com/prod/notes

which I did not notice. Now I need it, but I could not find it. Where can I find the endpoints?

+4
source share
1 answer

Just run

$ sls info

And you get all the information about the deployed endpoints and functions.

+4
source

Source: https://habr.com/ru/post/1674949/


All Articles