aws-lambda-cpp
aws-lambda-cpp copied to clipboard
C++ implementation of the AWS Lambda runtime
I am trying to get a simple example running on aws c++ runtime, but it keeps seg faulting when I invoke the lambda function. To start with, the example shown...
The instructions say to use the provided Dockerfile to build the S3 example. However, it looks like something has changed as the build now fails: ``` # make Scanning dependencies...
C99 shim
> You can use C++11 or later. Plain C, C++98 and C++03 can work but require you to write a shim. Will add examples on how to do that if...
Hi, I have the same issue as mentioned in https://github.com/awslabs/aws-lambda-cpp/issues/41. Applying the fix in https://github.com/awslabs/aws-lambda-cpp/pull/43/commits/28662172aec82da67be3a4f14b17705d9a8dfd1a didn't fix the error. I also find the code packager in the master branch does...
The packager currently is hard-set to produce a zip file: https://github.com/awslabs/aws-lambda-cpp/blob/1129e531bae450b6fb78ad5fc08d6222ceb9f68d/packaging/packager#L184-L185 It would be useful to [add an option](https://github.com/awslabs/aws-lambda-cpp/blob/1129e531bae450b6fb78ad5fc08d6222ceb9f68d/packaging/packager#L34) to skip the zipping (which will also make it unnecessary to...
In the table of supported platforms it looks like the only way to target arm64 architecture for lambda is to compile on Amazon Linux 2. Would it be possible to...
*Description of changes:* add an example By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Hi, I'm searching for an example for a Cpp Aws Lambda triggered by an SQS event. Can you please add it to the examples / reference an existing example ?
*Description of changes:* - adding Alpine 3.19 - skip crash test in this environment - unavailable dependencies means it does not pass due to #189 - adding Ubuntu 22.04 -...
This PR restores the enhanced stack traces (with line numbers and source filenames) even when libbacktrace is not found. It also ensures that Alpine would continue to work as expected...