Module Values.ImpossibleTravelDetailSource

Contains information on unusual and impossible travel in an account.

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

    IP address where the resource was first used in the impossible travel.

    *)
  2. endingIpAddress : IpAddress.t option;
    (*

    IP address where the resource was last used in the impossible travel.

    *)
  3. startingLocation : Location.t option;
    (*

    Location where the resource was first used in the impossible travel.

    *)
  4. endingLocation : Location.t option;
    (*

    Location where the resource was last used in the impossible travel.

    *)
  5. hourlyTimeDelta : HourlyTimeDelta.t option;
    (*

    Returns the time difference between the first and last timestamp the resource was used.

    *)
}
Sourceval make : ?startingIpAddress:??? -> ?endingIpAddress:??? -> ?startingLocation:??? -> ?endingLocation:??? -> ?hourlyTimeDelta:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of HourlyTimeDelta.t | `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