Amazon web services – How export logs from AWS Lambda to S3 bucket without CloudWatch?
How I can send or export logs from my AWS Lambda function to S3 without using by CloudWatch? Is there another option?
How I can send or export logs from my AWS Lambda function to S3 without using by CloudWatch? Is there another option?
I have a lambda function that is connected to Mongo via mongoose. The user inputs a name and password on the frontend and the lambda function searches whether the user exists and afterwards the crypted password is compared via bcrypt.…
Goal I want to be able to create a lambda function with CDK, but then manage the docker image that the lambda uses with a CI/CD pipeline (github actions) What I have done I have the following code: this.repository =…
I am developing a telegram bot with python (telebot) , aws lambda and api gateway. I have a problem in the lambda function and I can't understand why I have this kind of problem. My lambda is this: import telebot…
I'm trying to connect to Elasticache redis instance from lambda. Lambda and Elasticache are on same vpc and Lambda's execution role has all the permission for elasticache. But still I'm getting ECONNREFUSED. const redis = require("redis"); const AWS = require("aws-sdk");…
Currently I have a serverless API using lambda and API gateway. The next feature I want to build is user authentication using AWS cognito and then apply rate limiting to each user. how would I go about doing this? can…
I'm working on upgrading a Spring Cloud Functions lambda to run on JDK 17. Amazon does not provide base images for JDK 17, so instead of deploying a ZIP file I created a lambda that runs a Docker image. For…
I have deployed a docker container to AWS lambda and when I triggered function it gives me error but when I test it locally its working fine. it looks some permission issue related to some dirs but couldn't understand how…
I've built an image for Lambda using public.ecr.aws/lambda/python:3.8 but always get this error. Tried changing up the function and file names, but not getting any more details for debugging. Also I've run the function locally and the entrypoint/cmd works. START…
I am developing an AWS Lambda function which uses a runtime of Python 3.8. The source code is packaged into a custom Docker image and then passed to the Lambda service. In the Python program itself, I am executing various…