quarkus-amazon-lambda
quarkus-amazon-lambda copied to clipboard
Possibility for multiple lambdas/handlers
Is it possible to have multiple handlers/lambda in your code and individually deploy them? So, we would have 'HelloLambda1' and 'HelloLambda2' and then deploy them referring to their name? If not, the alternatives are to either build each lambda individually (very slow if you have 100 lambdas) or else to have a single lambda handle multiple endpoints (ie, have 10 lambdas each handling 10 endpoints by looking at the path/url coming in). Both are not ideal. Any ideas/suggestions?