Module Values.GeoLocationSource

Contains information about the location of the remote IP address. By default, GuardDuty returns Geolocation with Lat and Lon as 0.0.

Sourcetype nonrec t = {
  1. lat : Double.t option;
    (*

    The latitude information of the remote IP address.

    *)
  2. lon : Double.t option;
    (*

    The longitude information of the remote IP address.

    *)
}
Sourceval make : ?lat:??? -> ?lon:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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