Module Values.UpdateAccountRequestSource

Updates account details for the specified Amazon Chime account. Currently, only account name and default license updates are supported for this action.

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

    The Amazon Chime account ID.

    *)
  2. name : AccountName.t option;
    (*

    The new name for the specified Amazon Chime account.

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

    The default license applied when you add users to an Amazon Chime account.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?defaultLicense:??? -> 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