Class: Aws::Chime::Types::UpdatePhoneNumberRequestItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::UpdatePhoneNumberRequestItem
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass UpdatePhoneNumberRequestItem data as a hash:
{
phone_number_id: "NonEmptyString", # required
product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
calling_name: "CallingName",
}
The phone number ID, product type, or calling name fields to update, used with the BatchUpdatePhoneNumber and UpdatePhoneNumber actions.
Constant Summary collapse
- SENSITIVE =
[:calling_name]
Instance Attribute Summary collapse
-
#calling_name ⇒ String
The outbound calling name to update.
-
#phone_number_id ⇒ String
The phone number ID to update.
-
#product_type ⇒ String
The product type to update.
Instance Attribute Details
#calling_name ⇒ String
The outbound calling name to update.
10478 10479 10480 10481 10482 10483 10484 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 10478 class UpdatePhoneNumberRequestItem < Struct.new( :phone_number_id, :product_type, :calling_name) SENSITIVE = [:calling_name] include Aws::Structure end |
#phone_number_id ⇒ String
The phone number ID to update.
10478 10479 10480 10481 10482 10483 10484 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 10478 class UpdatePhoneNumberRequestItem < Struct.new( :phone_number_id, :product_type, :calling_name) SENSITIVE = [:calling_name] include Aws::Structure end |
#product_type ⇒ String
The product type to update.
10478 10479 10480 10481 10482 10483 10484 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 10478 class UpdatePhoneNumberRequestItem < Struct.new( :phone_number_id, :product_type, :calling_name) SENSITIVE = [:calling_name] include Aws::Structure end |