Module Values.UserErrorSource

The list of errors returned when errors are encountered during the BatchSuspendUser, BatchUnsuspendUser, or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.

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

    The user ID for which the action failed.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code.

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

    The error message.

    *)
}
Sourceval make : ?userId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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