Module Values.UpdatePhoneNumberRequestSource

Updates phone number details, such as product type or calling name, for the specified phone number ID. You can update one phone number detail at a time. For example, you can update either the product type or the calling name in one action. For toll-free numbers, you cannot use the Amazon Chime Business Calling product type. For numbers outside the U.S., you must use the Amazon Chime SIP Media Application Dial-In product type. Updates to outbound calling names can take 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.

Sourcetype nonrec t = {
  1. phoneNumberId : String_.t;
    (*

    The phone number ID.

    *)
  2. productType : PhoneNumberProductType.t option;
    (*

    The product type.

    *)
  3. callingName : CallingName.t option;
    (*

    The outbound calling name associated with the phone number.

    *)
}
Sourceval context_ : string
Sourceval make : ?productType:??? -> ?callingName:??? -> phoneNumberId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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