Module Values.ModifyUserMessageSource

Changes user password(s) and/or access string.

Sourcetype nonrec t = {
  1. userId : UserId.t;
    (*

    The ID of the user.

    *)
  2. accessString : AccessString.t option;
    (*

    Access permissions string used for this user.

    *)
  3. appendAccessString : AccessString.t option;
    (*

    Adds additional user permissions to the access string.

    *)
  4. passwords : PasswordListInput.t option;
    (*

    The passwords belonging to the user. You are allowed up to two.

    *)
  5. noPasswordRequired : BooleanOptional.t option;
    (*

    Indicates no password is required for the user.

    *)
  6. authenticationMode : AuthenticationMode.t option;
    (*

    Specifies how to authenticate the user.

    *)
  7. engine : EngineType.t option;
    (*

    Modifies the engine listed for a user. The options are valkey or redis.

    *)
}
Sourceval context_ : string
Sourceval make : ?accessString:??? -> ?appendAccessString:??? -> ?passwords:??? -> ?noPasswordRequired:??? -> ?authenticationMode:??? -> ?engine:??? -> userId:UserId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `List of [> `String of String_.t ] list | `String of UserId.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list ]) list ]) 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