Skip to main content

All Questions

0 votes
1 answer
244 views

AWS API gateway not passing data into lambda function upon invocation

I am new to APIs and Lambda, but what I am trying to do is perform a PUT method through my API and invoke a lambda function to update my DynamoDB table. I have tested my lambda function and it works ...
Noah harris's user avatar
0 votes
1 answer
109 views

Retrieve records in DynamoDB by position

We have an application where the client needs to request some information stored on DynamoDB filtering by date. We have the service created with API Gateway and a Lambda retrieving the corresponding ...
FranG91's user avatar
  • 83
0 votes
1 answer
649 views

Action on Google with AWS LAMBDA in python

I wrote AWS Lambda function in python for my smart home Alexa skill. I wanted to implement the actions on google on the same lambda. Is there any option to implement the same? I'm not much comfortable ...
Gyanendra Verma's user avatar
1 vote
1 answer
3k views

How to pass and read authorization bearer-token using python lambda function through api gateway?

I have a python lambda function that I want to decode and read the payload of a jwt. I created a get method and passing the authorization bearer-token to the endpoint. How can i pass and read the jwt ...
Pramod's user avatar
  • 11
2 votes
1 answer
2k views

Add Lambda Authorizer Output to the Input of other Lambda

Background I currently have an authorizer that takes a JWT token and decodes it and checks if valid or not to build a policy document, then that is used to grant or deny access to API endpoints. ...
B. Cratty's user avatar
  • 1,993
1 vote
0 answers
64 views

is there any way to maintain/get original content-type of file while passing through multipart/form-data

Im passing file and its name in multipart/form-data in postman to aws rest api in post call and uploading that file to s3 from lambda. But will get uploaded file in binary/octet-stream type. So i want ...
rohit wavhal's user avatar
0 votes
2 answers
2k views

Can't upload raw string (csv or json) using S3 pre-signed url

Following instructions on this link using Lambda and API Gateway: https://sookocheff.com/post/api/uploading-large-payloads-through-api-gateway/ I have a setup that allows me to get a pre-signed URL ...
credizian's user avatar
  • 479
2 votes
0 answers
2k views

How to get the caller IP using Amazon API gateway and Lambda

I would like to get the caller IP in my Lambda function, I followed this and I have changed my body mapping in the integration request to look like this: But my event object still does not have "...
GhaziBenDahmane's user avatar