Module Values.LoginAttributeSource

Information about the login attempts.

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

    Indicates the user name which attempted to log in.

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

    Indicates the application name used to attempt log in.

    *)
  3. failedLoginAttempts : Integer.t option;
    (*

    Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance.

    *)
  4. successfulLoginAttempts : Integer.t option;
    (*

    Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor.

    *)
}
Sourceval make : ?user:??? -> ?application:??? -> ?failedLoginAttempts:??? -> ?successfulLoginAttempts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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