Module Values.NetworkGeoLocationSource

Contains information about the location of a network endpoint involved in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub CSPM, you must have GuardDuty enabled. For more information, see GuardDuty Extended Threat Detection in the Amazon GuardDuty User Guide.

Sourcetype nonrec t = {
  1. city : NonEmptyString.t option;
    (*

    The name of the city.

    *)
  2. country : NonEmptyString.t option;
    (*

    The name of the country.

    *)
  3. lat : Double.t option;
    (*

    The latitude information of the endpoint location.

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

    The longitude information of the endpoint location.

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