Module Values.DestinationConfigSource

The destination configuration.

Sourcetype nonrec t = {
  1. thingName : ThingName.t option;
    (*

    The name of the IoT thing to which you want to connect.

    *)
  2. services : ServiceList.t;
    (*

    A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application.

    *)
}
Sourceval context_ : string
Sourceval make : ?thingName:??? -> services:ServiceList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Service.t ] list | `String of ThingName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t