Module Values.ActionRemoteIpDetailsSource

For AwsApiAction, NetworkConnectionAction, and PortProbeAction, RemoteIpDetails provides information about the remote IP address that was involved in the action.

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

    The IP address.

    *)
  2. organization : IpOrganizationDetails.t option;
    (*

    The internet service provider (ISP) organization associated with the remote IP address.

    *)
  3. country : Country.t option;
    (*

    The country where the remote IP address is located.

    *)
  4. city : City.t option;
    (*

    The city where the remote IP address is located.

    *)
  5. geoLocation : GeoLocation.t option;
    (*

    The coordinates of the location of the remote IP address.

    *)
}
Sourceval make : ?ipAddressV4:??? -> ?organization:??? -> ?country:??? -> ?city:??? -> ?geoLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of NonEmptyString.t ]) list ]) 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