Top "Aws-lambda" questions

AWS Lambda is a compute service that lets you run code without the overhead of managing servers.

How to pass a querystring or route parameter to AWS Lambda from Amazon API Gateway

for instance if we want to use GET /user?name=bob or GET /user/bob How would you pass both …

amazon-web-services aws-lambda aws-api-gateway
Can an AWS Lambda function call another

I have 2 Lambda functions - one that produces a quote and one that turns a quote into an order. I'd …

node.js amazon-web-services aws-lambda aws-api-gateway
AWS Lambda import module error in python

I am creating a AWS Lambda python deployment package. I am using one external dependency requests . I installed the external …

python amazon-web-services aws-lambda
Why is this HTTP request not working on AWS Lambda?

I'm getting started with AWS Lambda and I'm trying to request an external service from my handler function. According to …

node.js amazon-web-services httprequest aws-lambda
Getting json body in aws Lambda via API gateway

I'm currently using NodeJS to build a bot on AWS lambda via AWS Api Gateway and I'm running into an …

aws-lambda aws-api-gateway
How to load npm modules in AWS Lambda?

I've created several Lambda functions using the web based editor. So far so good. I'd now like to start extending …

amazon-web-services npm aws-lambda
AccessDeniedException: User is not authorized to perform: lambda:InvokeFunction

I'm trying to invoke a lambda function from node. var aws = require('aws-sdk'); var lambda = new aws.Lambda({ accessKeyId: 'id', …

amazon-web-services aws-lambda amazon-iam
AWS Lambda: Task timed out

We have been asked for my school project to write a Java code that runs in AWS Lambda. It is …

java amazon-web-services aws-lambda
Can you publish a message to an SNS topic using an AWS Lambda function backed by node.js?

Can you publish a message to an SNS topic using an AWS Lambda function backed by node.js?

amazon-web-services aws-lambda amazon-sns
How to get contents of a text file from AWS s3 using a lambda function?

I was wondering if I could set up a lambda function for AWS, triggered whenever a new text file is …

javascript amazon-web-services amazon-s3 aws-lambda