Module Values.UpdateUserRequestSource

Updates user details for a specified user ID. Currently, only LicenseType updates are supported for this action.

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

    The Amazon Chime account ID.

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

    The user ID.

    *)
  3. licenseType : License.t option;
    (*

    The user license type to update. This must be a supported license type for the Amazon Chime account that the user belongs to.

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

    The user type.

    *)
  5. alexaForBusinessMetadata : AlexaForBusinessMetadata.t option;
    (*

    The Alexa for Business metadata.

    *)
}
Sourceval context_ : string
Sourceval make : ?licenseType:??? -> ?userType:??? -> ?alexaForBusinessMetadata:??? -> accountId:NonEmptyString.t -> userId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `String of SensitiveString.t ]) 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