Module Values.IdentitySource

Sourcetype nonrec t = {
  1. sourceIp : string option;
    (*

    The source IP address of the TCP connection making the request to API Gateway.

    *)
  2. userAgent : string option;
    (*

    The User Agent of the API caller.

    *)
}
Sourceval make : ?sourceIp:??? -> ?userAgent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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