Struct aws_sdk_chime::types::PhoneNumberCapabilities
source · #[non_exhaustive]pub struct PhoneNumberCapabilities { /* private fields */ }Expand description
The phone number capabilities for Amazon Chime Business Calling phone numbers, such as enabled inbound and outbound calling and text messaging.
Implementations§
source§impl PhoneNumberCapabilities
impl PhoneNumberCapabilities
sourcepub fn inbound_call(&self) -> Option<bool>
pub fn inbound_call(&self) -> Option<bool>
Allows or denies inbound calling for the specified phone number.
sourcepub fn outbound_call(&self) -> Option<bool>
pub fn outbound_call(&self) -> Option<bool>
Allows or denies outbound calling for the specified phone number.
sourcepub fn inbound_sms(&self) -> Option<bool>
pub fn inbound_sms(&self) -> Option<bool>
Allows or denies inbound SMS messaging for the specified phone number.
sourcepub fn outbound_sms(&self) -> Option<bool>
pub fn outbound_sms(&self) -> Option<bool>
Allows or denies outbound SMS messaging for the specified phone number.
sourcepub fn inbound_mms(&self) -> Option<bool>
pub fn inbound_mms(&self) -> Option<bool>
Allows or denies inbound MMS messaging for the specified phone number.
sourcepub fn outbound_mms(&self) -> Option<bool>
pub fn outbound_mms(&self) -> Option<bool>
Allows or denies outbound MMS messaging for the specified phone number.
source§impl PhoneNumberCapabilities
impl PhoneNumberCapabilities
sourcepub fn builder() -> PhoneNumberCapabilitiesBuilder
pub fn builder() -> PhoneNumberCapabilitiesBuilder
Creates a new builder-style object to manufacture PhoneNumberCapabilities.
Trait Implementations§
source§impl Clone for PhoneNumberCapabilities
impl Clone for PhoneNumberCapabilities
source§fn clone(&self) -> PhoneNumberCapabilities
fn clone(&self) -> PhoneNumberCapabilities
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PhoneNumberCapabilities
impl Debug for PhoneNumberCapabilities
source§impl PartialEq<PhoneNumberCapabilities> for PhoneNumberCapabilities
impl PartialEq<PhoneNumberCapabilities> for PhoneNumberCapabilities
source§fn eq(&self, other: &PhoneNumberCapabilities) -> bool
fn eq(&self, other: &PhoneNumberCapabilities) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PhoneNumberCapabilities
Auto Trait Implementations§
impl RefUnwindSafe for PhoneNumberCapabilities
impl Send for PhoneNumberCapabilities
impl Sync for PhoneNumberCapabilities
impl Unpin for PhoneNumberCapabilities
impl UnwindSafe for PhoneNumberCapabilities
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more