Module Values.ImageLocationSource

Contains an image that is uploaded to IoT SiteWise and available at a URL.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the image.

    *)
  2. url : Url.t option;
    (*

    The URL where the image is available. The URL is valid for 15 minutes so that you can view and download the image

    *)
}
Sourceval make : ?id:??? -> ?url:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.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