Struct aws_sdk_chime::types::Termination
source · #[non_exhaustive]pub struct Termination { /* private fields */ }Expand description
Termination settings enable your SIP hosts to make outbound calls using your Amazon Chime Voice Connector.
Implementations§
source§impl Termination
impl Termination
sourcepub fn cps_limit(&self) -> Option<i32>
pub fn cps_limit(&self) -> Option<i32>
The limit on calls per second. Max value based on account service quota. Default value of 1.
sourcepub fn default_phone_number(&self) -> Option<&str>
pub fn default_phone_number(&self) -> Option<&str>
The default caller ID phone number.
sourcepub fn calling_regions(&self) -> Option<&[String]>
pub fn calling_regions(&self) -> Option<&[String]>
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
sourcepub fn cidr_allowed_list(&self) -> Option<&[String]>
pub fn cidr_allowed_list(&self) -> Option<&[String]>
The IP addresses allowed to make calls, in CIDR format. Required.
source§impl Termination
impl Termination
sourcepub fn builder() -> TerminationBuilder
pub fn builder() -> TerminationBuilder
Creates a new builder-style object to manufacture Termination.
Trait Implementations§
source§impl Clone for Termination
impl Clone for Termination
source§fn clone(&self) -> Termination
fn clone(&self) -> Termination
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 Termination
impl Debug for Termination
source§impl PartialEq<Termination> for Termination
impl PartialEq<Termination> for Termination
source§fn eq(&self, other: &Termination) -> bool
fn eq(&self, other: &Termination) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for Termination
Auto Trait Implementations§
impl RefUnwindSafe for Termination
impl Send for Termination
impl Sync for Termination
impl Unpin for Termination
impl UnwindSafe for Termination
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