Hacker News new | ask | show | jobs
by artworx 1163 days ago
The AWS Lambda Runtime API is pull based:

- GET events from ${AWS_LAMBDA_RUNTIME_API}/2018-06-01/runtime/invocation/next

- process it (run your handler)

- POST the response to /runtime/invocation/AwsRequestId/response

https://docs.aws.amazon.com/lambda/latest/dg/runtimes-api.ht...