Module Values.DnsRequestActionSource

Provided if ActionType is DNS_REQUEST. It provides details about the DNS request that was detected.

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

    The DNS domain that is associated with the DNS request. Length Constraints: 128.

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

    The protocol that was used for the DNS request. Length Constraints: Minimum length of 1. Maximum length of 64.

    *)
  3. blocked : Boolean.t option;
    (*

    Indicates whether the DNS request was blocked.

    *)
}
Sourceval make : ?domain:??? -> ?protocol:??? -> ?blocked:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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