aws-lambda-haskell-runtime
aws-lambda-haskell-runtime copied to clipboard
⚡Haskell runtime for AWS Lambda
`APIGatewayHandler` and `ALBHandler` are very handy handlers. I'm wondering if we could write more custom handlers using the low level `StandaloneLambdaHandler`? Had a quick look at the source code it...
Hi, thanks for your work on this! My lambda is invoked, but it looks like the request never gets to my handler. I'm getting an Internal Server error. Here's a...
I'm on an older version of this library using `runLambda`, `StandaloneLambdaResult` and `toStandaloneLambdaResponse`. Now that I'm upgrading to a newer library version, I have no clue how to keep my...
Hello! I just kickstarted a new project using this library (thanks!) and while setting this up, I noticed that your [docs site](https://theam.github.io/aws-lambda-haskell-runtime/index.html) is still showing the documentation for the older...
Hello! According to the [docs](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference) there is an `authorizer` field that is not currently in the `ApiGatewayRequestContext` data type. Is there a reason for this field not being present? If...
AWS ALB has Lambda integration now however the events it sends are slightly different to the APIGW Lambda Proxy events and `UseWithAPIGateway` can't cope with these differences it seems. It...
Per #41, some users are having trouble with static linking on MacOS, this is because [MacOS doesn't support it](https://stackoverflow.com/questions/3801011/ld-library-not-found-for-lcrt0-o-on-osx-10-6-with-gcc-clang-static-flag). A MacOS user should work in "development mode" without adding the...
I'm doing something where the payload can't decode to my handler input type, I used to get an error in cloudwatch logs when this happened but I upgraded from version...
With ``` generateLambdaDispatcher UseWithAPIGateway defaultDispatcherOptions ``` I'm currently seeing these warnings: ``` /app/Main.hs:58:1: warning: [-Wunused-matches] Defined but not used: ‘executionUuid’ | 58 | generateLambdaDispatcher UseWithAPIGateway defaultDispatcherOptions | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /app/Main.hs:58:1: warning:...