Module Values.RemoteAccountDetailsSource

Contains details about the remote Amazon Web Services account that made the API call.

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

    The Amazon Web Services account ID of the remote API caller.

    *)
  2. affiliated : Boolean.t option;
    (*

    Details on whether the Amazon Web Services account of the remote API caller is related to your GuardDuty environment. If this value is True the API caller is affiliated to your account in some way. If it is False the API caller is from outside your environment.

    *)
}
Sourceval make : ?accountId:??? -> ?affiliated:??? -> 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