Module Values.PasswordRequirementsSource

Defines password complexity requirements for users in a security group, including minimum length and character type requirements.

Sourcetype nonrec t = {
  1. lowercase : Integer.t option;
    (*

    The minimum number of lowercase letters required in passwords.

    *)
  2. minLength : Integer.t option;
    (*

    The minimum password length in characters.

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

    The minimum number of numeric characters required in passwords.

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

    The minimum number of special symbol characters required in passwords.

    *)
  5. uppercase : Integer.t option;
    (*

    The minimum number of uppercase letters required in passwords.

    *)
}
Sourceval make : ?lowercase:??? -> ?minLength:??? -> ?numbers:??? -> ?symbols:??? -> ?uppercase:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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