interesting, especially for very huge package or custom architecture (like installing Playwright, ML models, etc...). How to handle input messages in the lambda, like from sqs or api gateway? Thanks
Hey, All communication into a Lambda usually comes through the Event object in a Lambda function. This Event object represents the "event that triggered the function". For API Gateway this comes through the event body. In the case of SQS this comes through the event Records array.
Thanks
Of course!
how to host built version of nextjs using docker and CI CD onto a vps such as linoe or azure?
That is very specific! I will look into this.
Might not be relevant, but how to test your dockerized function locally before pushing it to the cloud?
This is a great suggestion, it is on my list to get to!
interesting, especially for very huge package or custom architecture (like installing Playwright, ML models, etc...). How to handle input messages in the lambda, like from sqs or api gateway? Thanks
Hey,
All communication into a Lambda usually comes through the Event object in a Lambda function. This Event object represents the "event that triggered the function". For API Gateway this comes through the event body. In the case of SQS this comes through the event Records array.
@@cloudmancer true, keep thinking about a standard application. Thanks anyway
@@cloudmancer true, keep thinking about a standard application. Thanks anyway