Top "Aws-lambda" questions

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

How can I retrieve a user's public IP address via Amazon API Gateway + Lambda (node)

I'm currently writing a Node.js lambda function, in which I want to log the incoming requester's public IP address. …

node.js amazon-web-services aws-lambda aws-api-gateway
How do I pass arguments to AWS Lambda functions using GET requests?

Say I want to pass val1 and val2 in the URL string when making a GET request from my Api …

python amazon-web-services aws-lambda aws-api-gateway
How to create a new version of a Lambda function using CloudFormation?

I'm trying to create a new version of a Lambda function using CloudFormation. I want to have multiple versions of …

amazon-web-services aws-lambda amazon-cloudformation
AWS Lambda Function is returning Handler 'handler' missing on module 'index'

Consider following code - function index(event, context, callback) { //some code } exports.handler = index(); { "errorMessage": "Handler 'handler' missing on module …

node.js aws-lambda
AWS Lambda http, where do I find the URL?

I am fairly new to AWS Lambda but sure can see the benefits of it and stumbled upon the superb …

amazon-web-services aws-lambda serverless-framework
aws api gateway & lambda: multiple endpoint/functions vs single endpoint

I have an AWS api that proxies lamba functions. I currently use different endpoints with separate lambda functions: api.com/…

api amazon-web-services aws-lambda aws-api-gateway
Specify log group for an AWS lambda?

Is there a way to specify the CloudWatch log group that an AWS lambda logs to? It seems to be …

amazon-web-services aws-lambda amazon-cloudformation amazon-cloudwatch
message: "Internal server error" when try to access aws gateway api

Created Lambda Hello world function using Node.js and created API GateWay trigger for Get call, tried the URL to …

aws-lambda aws-api-gateway
Invoke a AWS Lambda function by a http request

Is it possible to invoke a AWS Lambda function directly by a http request (either GET or POST)? If not, …

amazon-web-services aws-lambda