Module Values.DnsRequestActionSource

Contains information about the DNS_REQUEST action described in this finding.

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

    The domain information for the DNS query.

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

    The network connection protocol observed in the activity that prompted GuardDuty to generate the finding.

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

    Indicates whether the targeted port is blocked.

    *)
  4. domainWithSuffix : String_.t option;
    (*

    The second and top level domain involved in the activity that potentially prompted GuardDuty to generate this finding. For a list of top-level and second-level domains, see public suffix list.

    *)
  5. vpcOwnerAccountId : AccountId.t option;
    (*

    The Amazon Web Services account ID that owns the VPC through which the DNS request was made.

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