Module Values.RdsDbUserDetailsSource

Contains information about the user and authentication details for a database instance involved in the finding.

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

    The user name used in the anomalous login attempt.

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

    The application name used in the anomalous login attempt.

    *)
  3. database : String_.t option;
    (*

    The name of the database instance involved in the anomalous login attempt.

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

    The version of the Secure Socket Layer (SSL) used for the network.

    *)
  5. authMethod : String_.t option;
    (*

    The authentication method used by the user involved in the finding.

    *)
}
Sourceval make : ?user:??? -> ?application:??? -> ?database:??? -> ?ssl:??? -> ?authMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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