Top "Aws-lambda" questions

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

Cannot use Requests-Module on AWS Lambda

I need to do a rest-call within a python script, that runs once per day. I can't pack the "requests" …

python python-2.7 amazon-web-services aws-lambda
how to put an Item in aws DynamoDb using aws Lambda with python

Using python in AWS Lambda, how do I put/get an item from a DynamoDB table? In Node.js this …

python python-2.7 aws-lambda amazon-dynamodb
Is there a way to change the http status codes returned by Amazon API Gateway?

For instance if I want to return a specific 400 error for invalid parameters or perhaps a 201 when the lambda function …

amazon-web-services aws-lambda aws-api-gateway
How do I add python libraries to an AWS lambda function for Alexa?

I was following the tutorial to create an Alexa app using Python: Python Alexa Tutorial I was able to successfully …

python amazon-web-services pip aws-lambda alexa-skills-kit
Nodejs - Invoke an AWS.Lambda function from within another lambda function

I have the following function which I use to invoke a Lambda function from within my code. However when I …

node.js amazon-web-services aws-lambda aws-sdk
How to access an AWS Lambda environment variable from Python

Using the new environment variable support in AWS Lambda, I've added an env var via the webui for my function. …

python aws-lambda
Download an already uploaded Lambda function

I created a lambda function in AWS (Python) using "upload .zip" I lost those files and I need to make …

amazon-web-services aws-lambda
How to wait for async actions inside AWS Lambda?

I am trying to process uploaded file in S3. Since getObject is asyncronous main function ends before processing is done, …

node.js aws-lambda
Reading data from S3 using Lambda

I have a range of json files stored in an S3 bucket on AWS. I wish to use AWS lambda …

python json amazon-web-services amazon-s3 aws-lambda
AWS Lambda Scheduled Tasks

Amazon announced AWS Lambda (http://aws.amazon.com/lambda/). The product description includes: Scheduled Tasks AWS Lambda functions can be …

amazon-web-services cron-task aws-lambda