Top "Aws-lambda" questions

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

Using an api key in amazon api gateway

I have created an api key and added it to my functions. I have then deployed the api and tested …

amazon-web-services aws-lambda amazon-cognito aws-api-gateway
AWS lambda api gateway error "Malformed Lambda proxy response"

I am trying to set up a hello world example with AWS lambda and serving it through api gateway. I …

node.js amazon-web-services aws-lambda aws-api-gateway
How do you write to the file system of an aws lambda instance?

I am unsuccessfully trying to write to the file system of an aws lambda instance. The docs say that a …

javascript node.js amazon-web-services amazon-s3 aws-lambda
Creating a lambda function in AWS from zip file

I am trying to create a simple lambda function, and I'm running into an error. My code is basically console.…

javascript node.js amazon-web-services aws-lambda
Cognito User Pool: How to refresh Access Token using Refresh Token

I am using Cognito user pool to authenticate users in my system. A successful authentication gives an ID Token (JWT), …

amazon-web-services aws-lambda amazon-cognito
Parameter ScheduleExpression is not valid

I'm trying to setup a Cloudwatch Scheduled Event and my cron expression seems to be invalid, though I can't figure …

cron aws-lambda amazon-cloudwatch
How could I use aws lambda to write file to s3 (python)?

I have tried to use lambda function to write a file to S3, then test shows "succeeded" ,but nothing appeared …

python amazon-web-services amazon-s3 aws-lambda serverless-framework
AWS lambda function stops working after timed out error

I have a simple lambda function that asynchronously makes an API calls and then returns data. 99% of the time this …

node.js amazon-web-services aws-lambda
Pandas & AWS Lambda

Does anyone have a fully compiled version of pandas that is compatible with AWS Lambda? After searching around for a …

pandas aws-lambda
Using python Logging with AWS Lambda

As the AWS documentation suggests: import logging logger = logging.getLogger() logger.setLevel(logging.INFO) def my_logging_handler(event, context): …

python amazon-web-services logging aws-lambda