Module Values.ConnectivityInfoSource

Information about a Greengrass core's connectivity.

Sourcetype nonrec t = {
  1. hostAddress : string option;
    (*

    The endpoint for the Greengrass core. Can be an IP address or DNS.

    *)
  2. id : string option;
    (*

    The ID of the connectivity information.

    *)
  3. metadata : string option;
    (*

    Metadata for this endpoint.

    *)
  4. portNumber : int option;
    (*

    The port of the Greengrass core. Usually 8883.

    *)
}
Sourceval make : ?hostAddress:??? -> ?id:??? -> ?metadata:??? -> ?portNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `String of string ]) 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