Module Values.UpdateConnectivityInfoRequestSource

Updates connectivity information for a Greengrass core device. Connectivity information includes endpoints and ports where client devices can connect to an MQTT broker on the core device. When a client device calls the IoT Greengrass discovery API, IoT Greengrass returns connectivity information for all of the core devices where the client device can connect. For more information, see Connect client devices to core devices in the IoT Greengrass Version 2 Developer Guide.

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

    The name of the core device. This is also the name of the IoT thing.

    *)
  2. connectivityInfo : ConnectivityInfoList.t;
    (*

    The connectivity information for the core device.

    *)
}
Sourceval context_ : string
Sourceval make : thingName:CoreDeviceThingName.t -> connectivityInfo:ConnectivityInfoList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of PortNumberInt.t | `String of String_.t ]) list ] list | `String of CoreDeviceThingName.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