This time I'm looking for passing parameters to lambda invoke using boto3.client instead of make a request to API gateway.
Assume I developed a lambda function that can be invoked through api get
. ie: https://linktolambda/<parameter>
and now I am trying to access same lambda function from another one using boto3 client.
I have read documentation from:
- https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda.html#Lambda.Client.invoke
- https://github.com/boto/boto3/issues/2225
- https://qxf2.com/blog/invoking-aws-lambda-functions-from-a-flask-app/
I have read stackoverflow questions, reddit questions, medium posts, etc. but I haven't found what I'm looking for.
Thanks in advance.