Values_0.ThingConnectivitySourceThe connectivity status of the thing.
type nonrec t = {connected : Boolean.t option;True if the thing is connected to the Amazon Web Services IoT Core service; false if it is not connected.
*)timestamp : ConnectivityTimestamp.t option;The epoch time (in milliseconds) when the thing last connected or disconnected. If the thing has been disconnected for approximately an hour, the time value might be missing.
*)disconnectReason : DisconnectReason.t option;The reason why the client is disconnected. If the thing has been disconnected for approximately an hour, the disconnectReason value might be missing.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Long of ConnectivityTimestamp.t
| `String of DisconnectReason.t ])
list ]