aws-lambda-cpp
aws-lambda-cpp copied to clipboard
C++ implementation of the AWS Lambda runtime
Reproducing the build instructions in the README with the following Dockerfile ```Dockerfile FROM alpine:3.14 RUN apk add git g++ make cmake unzip libtool curl-dev automake RUN git clone https://github.com/awslabs/aws-lambda-cpp.git &&...
I am trying to run cmake as per instructions, and I get: ``` CMake Error at C:/Program Files/CMake/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Could NOT find CURL (missing: CURL_LIBRARY) (found version "7.79.1") ``` I...
To Whom this may concern: I am extremely new to C++. I am able to get the s3 example up and running. I am able to compile and zip everything...
Hi! I'm following the readme about package. In the makefile it doesnt exits the target: aws-lambda-package-demo make aws-lambda-package-demo make: *** No rule to make target 'aws-lambda-package-demo'. Stop. The last command...
Hello I am using Lambda C++ SDK with success in our environment but when i connect Destination (SQS on both failure and success) the result is not send to the...
Hi, I've updated AWS SDK CPP to v1.9 and rewritten my libraries that were using S3 to use S3-CRT instead. However S3-CRT doesn't work with my lambda functions. Could you...
I'd like to return binary data through the HTTP API Gateway (HTTP , NOT REST API!), but the response has to be a json object, always. Is there some workaround...
With the CLI V2 update the invoke commands in the various README.md files need to be updated. **_Related Docs:_** https://docs.aws.amazon.com/cli/latest/userguide/cliv2-migration.html#cliv2-migration-binaryparam. **_Stackoverflow Discussion_** https://stackoverflow.com/questions/60310607/amazon-aws-cli-not-allowing-valid-json-in-payload-parameter
Hello, If my lambda function has a c++ library dependency that I am building separately, and that will be dynamically loaded, what platform should I build the library dependency for?...
``` [ 36%] Building CXX object aws-cpp-sdk-core/CMakeFiles/aws-cpp-sdk-core.dir/ub_core.cpp.o In file included from ~~??~~/aws-sdk-cpp/build/aws-cpp-sdk-core/ub_core.cpp:46: ~~??~~/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/crypto/openssl/CryptoImpl.cpp: In constructor ‘Aws::Utils::Crypto::HMACRAIIGuard::HMACRAIIGuard()’: ~~??~~/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/crypto/openssl/CryptoImpl.cpp:281:42: error: ‘HMAC_CTX* HMAC_CTX_new()’ is deprecated [-Werror=deprecated-declarations] 281 | m_ctx = HMAC_CTX_new(); | ^...