I'm trying to invoke a AWS Lambda function, but pass it data _after_ it has started running.
The best plan I have so far is to trigger/long-poll a external blocking request from the lambda to a resource I control (web-server, s3 bucket etc), and publish the data there once the lambda is running.
Any other viable solutions?