Before compiling AWS Embedded C SDK we need to configure AWS parameter given in aws_iot_config.h as shown below.
#define AWS_IOT_MQTT_HOST ""
#define AWS_IOT_MQTT_PORT 8883
#define AWS_IOT_MQTT_CLIENT_ID ""
#define AWS_IOT_MY_THING_NAME ""
I understood all parameter except the macro AWS_IOT_MQTT_CLIENT_ID. What does it mean and where to get MQTT ID?
Please help.