I'm trying to setup a simple aws lambda function and no matter what python I put in the function it's returning an error on a line that's not even in the functi
I have a lambda function that is writing some data to an Elasticsearch domain I have also set up through AWS. Currently the access policy on my domain is just t
The environment variables in the lambda handler has to be set via lambda handler according to the stage. The values for schema, endpoint are different for diffe
This is my lambda handler where i am using various AWS services. exports.handler = function(event,context){ var body = event; var isValidBody = valida
I want to backup my configured lambdas in AWS. I already searched online but not mention of how to do this Any idea how to implement this? Thanks
I (maybe falsely) assumed lambda@edge can modify origin.responce content, so wrote a lambda function like this: /* this does not work. response.Body is not defi
I made a classifier in Python that uses a lot of libraries. I have uploaded the model to Amazon S3 as a pickle (my_model.pkl). Ideally, every time someone uploa
AWS have recently released the Lambda function URLs feature which allows a function to be invoked via a URL. I would like to allow my function to be invoked via
I am trying to save data in S3 through firehose proxied by API gateway. I have create an API gateway endpoint that uses the AWS service integration type and Put
I have a particular workflow where I want to pass a list of 500 json strings from a lambda function to a step function (stepFunction1), and then iterate over th
My AWS Lambda occasionally fails receiving event message from Monday.com. I'm using a containerized Lambda deployment (via Docker). The flow is: There's a Monda
I'm relatively new to AWS lambda function and nodejs. I'm working on to try and get the list of 5 cities in a country by using HTTP POST request from this websi
I'm using AWS Lambda to scan data from a DynamoDB table. This is what I get in return: { "videos": [ { "file": { "S": "file1.mp4" },
I am working on Amazon Connect application. I am using lambda for handling backend data. My requirement is to change agent status from lambda call using AWS SDK
Im running a workflow using a step function (with SAM), when I needed to send information between lambdas I've used events and everything was perfect! But now,
My Node lambda is a fairly small function in terms of what it does/lines of code. yet somehow is sitting at 18mb in size. I think this might be due to me instal
When I have my IAM Policy for my lambda execution role set to: { "Version": "2012-10-17", "Statement": [ { "Action": [
I am trying to set up a hello world example with AWS lambda and serving it through api gateway. I clicked the "Create a Lambda Function", which set up the api g
I'm encountering a difficulty when using NLTK corpora (in particular stop words) in AWS Lambda. I'm aware that the corpora need to be downloaded and have done s
I currently have an AWS DynamoDB stream triggers a Lambda function. The Lambda function is triggered by both insert and update events in the DynamoDB. Is ther