Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamically create AWS IoT topic

Is it possible to create a AWS IoT topic dynamically .

For example, Is it possible to set a RULE where once the message is received, It creates a topic dynamically or through lambda function.

Or is it possible through AWS-SDK

Any suggestion would be helpful

like image 437
heisenberg Avatar asked Oct 16 '17 09:10

heisenberg


1 Answers

You don't have to explicitly "create" topics in AWS IoT (MQTT). You would simply subscribe to, or start posting to a topic and if the topic doesn't already exist the IoT service will create it automatically.

like image 126
Mark B Avatar answered Sep 21 '22 13:09

Mark B