Module Values.CreateUserRequestSource

Creates a user under the specified Amazon Chime account.

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

    The Amazon Chime account ID.

    *)
  2. username : String_.t option;
    (*

    The user name.

    *)
  3. email : EmailAddress.t option;
    (*

    The user's email address.

    *)
  4. userType : UserType.t option;
    (*

    The user type.

    *)
}
Sourceval context_ : string
Sourceval make : ?username:??? -> ?email:??? -> ?userType:??? -> accountId:NonEmptyString.t -> 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