I already have the lambda python function written and the perl script written. I just can't figure out how to call the python function from perl. I would put the perl script in a custom lambda runtime but my perl script runs for a lot longer that 15 minutes. If someone could point me in the right direction I would be very grateful.
Asked
Active
Viewed 132 times
0
-
https://www.sqlshack.com/calling-an-aws-lambda-function-from-another-lambda-function/ – brian d foy Apr 01 '21 at 11:17
-
https://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html – brian d foy Apr 01 '21 at 11:20
2 Answers
0
You can invoke a lambda with a web request.
Also, there's Can an AWS Lambda function call another, among with many other resources out there (and on this site even), that have examples. In Perl, the PAWS module handle parts of the AWS interface.

brian d foy
- 129,424
- 31
- 207
- 592
-
PAWS will be the way that I go as soon as I figure out how to add it to my AWS EC2 Instance – Terry Jensen Apr 01 '21 at 19:15