Struct aws_sdk_chime::client::fluent_builders::UpdatePhoneNumber
source · [−]pub struct UpdatePhoneNumber { /* private fields */ }Expand description
Fluent builder constructing a request to UpdatePhoneNumber.
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.
Implementations
sourceimpl UpdatePhoneNumber
impl UpdatePhoneNumber
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePhoneNumber, AwsResponseRetryClassifier>, SdkError<UpdatePhoneNumberError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePhoneNumber, AwsResponseRetryClassifier>, SdkError<UpdatePhoneNumberError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdatePhoneNumberOutput, SdkError<UpdatePhoneNumberError>>
pub async fn send(
self
) -> Result<UpdatePhoneNumberOutput, SdkError<UpdatePhoneNumberError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn phone_number_id(self, input: impl Into<String>) -> Self
pub fn phone_number_id(self, input: impl Into<String>) -> Self
The phone number ID.
sourcepub fn set_phone_number_id(self, input: Option<String>) -> Self
pub fn set_phone_number_id(self, input: Option<String>) -> Self
The phone number ID.
sourcepub fn product_type(self, input: PhoneNumberProductType) -> Self
pub fn product_type(self, input: PhoneNumberProductType) -> Self
The product type.
sourcepub fn set_product_type(self, input: Option<PhoneNumberProductType>) -> Self
pub fn set_product_type(self, input: Option<PhoneNumberProductType>) -> Self
The product type.
sourcepub fn calling_name(self, input: impl Into<String>) -> Self
pub fn calling_name(self, input: impl Into<String>) -> Self
The outbound calling name associated with the phone number.
sourcepub fn set_calling_name(self, input: Option<String>) -> Self
pub fn set_calling_name(self, input: Option<String>) -> Self
The outbound calling name associated with the phone number.
Trait Implementations
sourceimpl Clone for UpdatePhoneNumber
impl Clone for UpdatePhoneNumber
sourcefn clone(&self) -> UpdatePhoneNumber
fn clone(&self) -> UpdatePhoneNumber
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more