Find the Lambda endpoints using Python Boto3 SDK

0

Find the Lambda endpoints using Python Boto3 SDK

asked 2 years ago326 views
1 Answer
0

You can find this via public parameters. A command line equivalent would look like :

aws ssm get-parameter  --name /aws/service/global-infrastructure/regions/us-east-2/services/lambda/endpoint  --query 'Parameter.Value'

To do this in Python, take a look at this example

profile pictureAWS
EXPERT
kentrad
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions