Module Values.DeleteUserRequestSource

Deletes a user from the user pool.

Sourcetype nonrec t = {
  1. userName : Username.t;
    (*

    The email address of the user. Users' email addresses are case-sensitive.

    *)
  2. authenticationType : AuthenticationType.t;
    (*

    The authentication type for the user. You must specify USERPOOL.

    *)
}
Sourceval context_ : string
Sourceval make : userName:Username.t -> authenticationType:AuthenticationType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Username.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