Module Values.FlaggedIpAddressDetailSource

Contains information on suspicious IP addresses identified as indicators of compromise. This indicator is derived from Amazon Web Services threat intelligence.

Sourcetype nonrec t = {
  1. ipAddress : IpAddress.t option;
    (*

    IP address of the suspicious entity.

    *)
  2. reason : Reason.t option;
    (*

    Details the reason the IP address was flagged as suspicious.

    *)
}
Sourceval make : ?ipAddress:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IpAddress.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