corrected version (with typedef struct IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE_DATA* IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE;) included in the sources

Dependents:   STM32F746_iothub_client_sample_mqtt

Fork of iothub_client by Azure IoT

Embed: (wiki syntax)

« Back to documentation index

IOTHUB_CLIENT_CONFIG_TAG Struct Reference

IOTHUB_CLIENT_CONFIG_TAG Struct Reference

This struct captures IoTHub client configuration. More...

#include <iothub_client_ll.h>

Data Fields

IOTHUB_CLIENT_TRANSPORT_PROVIDER protocol
 A function pointer that is passed into the IoTHubClientCreate.
const char * deviceId
 A string that identifies the device.
const char * deviceKey
 The device key used to authenticate the device.
const char * deviceSasToken
 The device SAS Token used to authenticate the device in place of device key.
const char * iotHubName
 The IoT Hub name to which the device is connecting.
const char * iotHubSuffix
 IoT Hub suffix goes here, e.g., private.azure-devices-int.net.

Detailed Description

This struct captures IoTHub client configuration.

Definition at line 98 of file iothub_client_ll.h.


Field Documentation

const char* deviceId

A string that identifies the device.

Definition at line 107 of file iothub_client_ll.h.

const char* deviceKey

The device key used to authenticate the device.

Definition at line 110 of file iothub_client_ll.h.

const char* deviceSasToken

The device SAS Token used to authenticate the device in place of device key.

Definition at line 113 of file iothub_client_ll.h.

const char* iotHubName

The IoT Hub name to which the device is connecting.

Definition at line 116 of file iothub_client_ll.h.

const char* iotHubSuffix

IoT Hub suffix goes here, e.g., private.azure-devices-int.net.

Definition at line 119 of file iothub_client_ll.h.

IOTHUB_CLIENT_TRANSPORT_PROVIDER protocol

A function pointer that is passed into the IoTHubClientCreate.

A function definition for AMQP is defined in the include iothubtransportamqp.h. A function definition for HTTP is defined in the include iothubtransporthttp.h A function definition for MQTT is defined in the include iothubtransportmqtt.h

Definition at line 104 of file iothub_client_ll.h.