Reputation: 9694
This link (https://aws.amazon.com/iot-core/features/) says that: "The AWS IoT Device SDK enables your devices to connect, authenticate, and exchange messages with AWS IoT Core using the MQTT, HTTP, or WebSockets protocols."
This link (https://docs.aws.amazon.com/iot/latest/developerguide/iot-sdks.html) says that: "These SDKs help you connect your IoT devices to AWS IoT using the MQTT and WSS protocols."
This link (https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html) says that, for HTTPS: "No SDK support, but you can use language-specific methods to make HTTPS requests"
I am confused about whether the SDK supports HTTPS as mentioned in link1; or does it not support as mention in link 2 and link 3?
Upvotes: 0
Views: 289
Reputation: 4946
The AWS IoT SDK provides support for HTTPS using the AWS IoT Data Plane API. e.g.
However, devices and clients using HTTPS can only publish messages. See https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
Upvotes: 1