V.06 11/3

Dependencies:   FT6206 SDFileSystem SPI_TFT_ILI9341 TFT_fonts

Fork of ATT_AWS_IoT_demo by attiot

Embed: (wiki syntax)

« Back to documentation index

MQTTMessageParams Struct Reference

MQTTMessageParams Struct Reference

MQTT Message Parameters. More...

#include <aws_iot_mqtt_interface.h>

Data Fields

QoSLevel qos
 Message Quality of Service.
bool isRetained
 Retained messages are NOT supported by the AWS IoT Service at the time of this SDK release.
bool isDuplicate
 Is this message a duplicate QoS > 0 message? Handled automatically by the MQTT client.
uint16_t id
 Message sequence identifier. Handled automatically by the MQTT client.
void * pPayload
 Pointer to MQTT message payload (bytes).
uint32_t PayloadLen
 Length of MQTT payload.

Detailed Description

MQTT Message Parameters.

Defines a type for properties of MQTT messages including topic, payload an QoS.

Definition at line 110 of file aws_iot_mqtt_interface.h.


Field Documentation

uint16_t id

Message sequence identifier. Handled automatically by the MQTT client.

Definition at line 114 of file aws_iot_mqtt_interface.h.

Is this message a duplicate QoS > 0 message? Handled automatically by the MQTT client.

Definition at line 113 of file aws_iot_mqtt_interface.h.

bool isRetained

Retained messages are NOT supported by the AWS IoT Service at the time of this SDK release.

Definition at line 112 of file aws_iot_mqtt_interface.h.

uint32_t PayloadLen

Length of MQTT payload.

Definition at line 116 of file aws_iot_mqtt_interface.h.

void* pPayload

Pointer to MQTT message payload (bytes).

Definition at line 115 of file aws_iot_mqtt_interface.h.

Message Quality of Service.

Definition at line 111 of file aws_iot_mqtt_interface.h.