Module Values.CreateUserRequestSource

Creates a universally unique identifier (UUID) mapped to a list of local user ids within an application.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The identifier of the application for which the user mapping will be created.

    *)
  2. userId : String_.t;
    (*

    The user emails attached to a user mapping.

    *)
  3. userAliases : CreateUserRequestUserAliasesList.t option;
    (*

    The list of user aliases in the mapping.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A token that you provide to identify the request to create your Amazon Q Business user mapping.

    *)
}
Sourceval context_ : string
Sourceval make : ?userAliases:??? -> ?clientToken:??? -> applicationId:ApplicationId.t -> userId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of IndexId.t ]) list ] list | `String of ApplicationId.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