chaosmonk
chaosmonk

Reputation: 417

How to invoke AWS lambda function over http from IoT device?

The device doesnt support https requests so I need to make http request to a lambda function from a device and pass some data as well. How can I achieve that?

Upvotes: 0

Views: 179

Answers (1)

Conti
Conti

Reputation: 1273

You have to use API Gateway to create an endpoint connected to the Lambda function you built.

Upvotes: 2

Related Questions