Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. menuconfig AWS_IOT_SDK
  2. bool "Amazon Web Services IoT Platform"
  3. help
  4. Select this option to enable support for the AWS IoT platform,
  5. via the esp-idf component for the AWS IoT Device C SDK.
  6. config AWS_IOT_MQTT_HOST
  7. string "AWS IoT Endpoint Hostname"
  8. depends on AWS_IOT_SDK
  9. default ""
  10. help
  11. Default endpoint host name to connect to AWS IoT MQTT/S gateway
  12. This is the custom endpoint hostname and is specific to an AWS
  13. IoT account. You can find it by logging into your AWS IoT
  14. Console and clicking the Settings button. The endpoint hostname
  15. is shown under the "Custom Endpoint" heading on this page.
  16. If you need per-device hostnames for different regions or
  17. accounts, you can override the default hostname in your app.
  18. config AWS_IOT_MQTT_PORT
  19. int "AWS IoT MQTT Port"
  20. depends on AWS_IOT_SDK
  21. default 8883
  22. range 0 65535
  23. help
  24. Default port number to connect to AWS IoT MQTT/S gateway
  25. If you need per-device port numbers for different regions, you can
  26. override the default port number in your app.