I would like to have an easy command like I use in the bash to publish something to a topic on MQTT inside a AWS Lambda function. Along the lines of: mosquitto_pub -h my.server.com -t "light/set" -m "on"
Background: I would like to turn a lamp on and off with Alexa. Alexa can start a Lambda function, and inside of this Lambda function I would like to start an MQTT publish, because the lamp can listen to a MQTT topic and react on the messages there.(Maybe there are easier solutions, but we are in a complicated (university) network which makes many other approaches more difficult)
If you are using Python, I was able to get an AWS Lambda function to publish a message to AWS IoT using the following inside my handler function:
You will also need to ensure that the Role (in your Lambda function configuration) has a policy attached to allow access to IoT publish function. Under IAM -> Roles you can add an inline policy to your Lambda function Role like:
If you use Node.js, you need to install the mqtt library. The following steps help you download and install mqtt library on AWS Lambda.
Download and install Node.js and npm on your PC.
Download MQTT library for node.js.
Unzip it at the nodejs directory that Node.js was installed. (In Windows 10 x64, nodejs directory is
C:\Program Files\nodejs
)Create a folder to store the mqtt installed files. For example,
D:\lambda_function
.Run Command Prompt as administrator, change directory to nodejs directory.
Install mqtt library to
D:\lambda_function
.Here's a similar project.
The AWS SDK has two classes to work with IoT: Iot and IotData. IotData.publish is the method you are looking for. It looks like the Iot object is for working with things and IotData is for working with MQTT and shadows. This ought to be directly referenced in the documentation on MQTT and shadows, but it isn't.
This service (IotData) is also available in the CLI.
If you're using Node.js, this will work -
Remember to add iot:publish permission to the role used by this lambda function.