Api Gateway support is very nice, however it should be possible to deploy AWS Lambda function with chalice that has not been exposed to the user (without API gateway).
Appreciate any workaround
+1
+1
+1 if I can connect it to a SQS or SNS event.
First step should be to make deployments work without decorators.
On Sat, Mar 11, 2017, 04:53 dimo3d notifications@github.com wrote:
+1 if I can connect it to a SQS or SNS event.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/awslabs/chalice/issues/162#issuecomment-285864855,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AATTEF24N2LSEETNqfK3r9rD4a5zp_Ocks5rkplQgaJpZM4KuJap
.
+1
Marking as feature request, I'd like to add support for this.
+1
I'd like this for scaling images when they're uploaded to S3, so would need to respond to S3 events.
Quick update on this. This is now partially possible using the @app.lambda_function() (docs http://chalice.readthedocs.io/en/latest/topics/purelambda.html). There's still a limitation that you have to have at least one route defined (so this would be to create additional lambda functions), but this is a limitation I plan on removing soon.
Most helpful comment
Quick update on this. This is now partially possible using the
@app.lambda_function()(docs http://chalice.readthedocs.io/en/latest/topics/purelambda.html). There's still a limitation that you have to have at least one route defined (so this would be to create additional lambda functions), but this is a limitation I plan on removing soon.