0

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.

brian d foy
  • 129,424
  • 31
  • 207
  • 592

2 Answers2

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
-2

Have you tried Inline::Python?1

user3343917
  • 276
  • 1
  • 2
  • 6