aws-lambda-cpp icon indicating copy to clipboard operation
aws-lambda-cpp copied to clipboard

C++ implementation of the AWS Lambda runtime

Results 47 aws-lambda-cpp issues
Sort by recently updated
recently updated
newest added

Seeing the same issue as https://github.com/awslabs/aws-lambda-cpp/issues/124 but with Alpine 3.18. ``` FROM alpine:3.18 RUN apk add --no-cache cmake make g++ git bash zip curl-dev zlib-dev elfutils-dev RUN git clone https://github.com/awslabs/aws-lambda-cpp.git...

hey, I am running into an error while making a httprequest to Elastic Search The error is > The request signature we calculated does not match the signature you provided....

I was just doing the demo project described in the README. When executing `make aws-lambda-package-demo` I got this error. ``` adam@DESKTOP-UNU2UQJ:~/aws-lambda/build$ sudo make aws-lambda-package-demo Consolidate compiler generated dependencies of target...

# Summery This PR addresses the issue reported in #197 regarding the unnecessary space found before the "stackTrace" key in the generated JSON error payload. The presence of this space...

# Describe the issue I noticed that the error payload JSON generated by aws::lambda_runtime::invocation_response::failure includes an unexpected space before the "stackTrace" key. This extra space seems unnecessary and affects the...

Example snippet: ```cmake set(BUILD_SHARED_LIBS ON) FetchContent_Declare( aws-lambda-cpp GIT_REPOSITORY https://github.com/awslabs/aws-lambda-cpp.git GIT_TAG v0.2.10 GIT_SHALLOW TRUE OVERRIDE_FIND_PACKAGE TRUE ) unset(BUILD_SHARED_LIBS CACHE) find_package(aws-lambda-cpp) target_link_libraries(${PROJECT_NAME} PRIVATE aws-lambda-cpp::aws-lambda-runtime) aws_lambda_package_target(${PROJECT_NAME} NO_LIBC) ``` Currently fails with the following...

Does aws-lambda-cpp support AWS Lambda response streaming ? https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/ I have a Fujifilm X-T10 that produces images with the finest quality with a size around 6MB and I would like...

Fixes Issue #202, #115. *Description of changes:* * update `README.md` and some minor code examples to be consistent again, with current AWS infrastructure 1. fix `provided` _runtime_ to `provided.al2023` 2....

Great work, however I came across some problems, when using this. Seems like some time has passed in AWS land. :) * there is no `provided` runtime anymore, proper options...

*Description of changes:* - add latest version of `gtest` framework via `CMakeLists.txt` (`1.15.2` as of today) - add a `noop.dummy_test`, as a first step for having unit tests in CI...