emqx_bridge_dynamo.hocon 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. emqx_bridge_dynamo {
  2. config_enable.desc:
  3. """Enable or disable this bridge"""
  4. config_enable.label:
  5. """Enable Or Disable Bridge"""
  6. desc_config.desc:
  7. """Configuration for a DynamoDB bridge."""
  8. desc_config.label:
  9. """DynamoDB Bridge Configuration"""
  10. desc_name.desc:
  11. """Bridge name."""
  12. desc_name.label:
  13. """Bridge Name"""
  14. desc_type.desc:
  15. """The Bridge Type"""
  16. desc_type.label:
  17. """Bridge Type"""
  18. local_topic.desc:
  19. """The MQTT topic filter to be forwarded to DynamoDB. All MQTT `PUBLISH` messages with the topic
  20. matching the `local_topic` will be forwarded.</br>
  21. NOTE: if this bridge is used as the action of a rule (EMQX rule engine), and also `local_topic` is
  22. configured, then both the data got from the rule and the MQTT messages that match `local_topic`
  23. will be forwarded."""
  24. local_topic.label:
  25. """Local Topic"""
  26. template.desc:
  27. """Template, the default value is empty. When this value is empty the whole message will be stored in the database.<br>
  28. The template can be any valid json with placeholders and make sure all keys for table are here, example:<br>
  29. {"id" : ${id}, "clientid" : ${clientid}, "data" : ${payload}}"""
  30. template.label:
  31. """Template"""
  32. }