Struct aws_sdk_chime::model::ProxySession
source · [−]#[non_exhaustive]pub struct ProxySession { /* private fields */ }Expand description
The proxy session for an Amazon Chime Voice Connector.
Implementations
sourceimpl ProxySession
impl ProxySession
sourcepub fn voice_connector_id(&self) -> Option<&str>
pub fn voice_connector_id(&self) -> Option<&str>
The Amazon Chime voice connector ID.
sourcepub fn proxy_session_id(&self) -> Option<&str>
pub fn proxy_session_id(&self) -> Option<&str>
The proxy session ID.
sourcepub fn status(&self) -> Option<&ProxySessionStatus>
pub fn status(&self) -> Option<&ProxySessionStatus>
The status of the proxy session.
sourcepub fn expiry_minutes(&self) -> Option<i32>
pub fn expiry_minutes(&self) -> Option<i32>
The number of minutes allowed for the proxy session.
sourcepub fn capabilities(&self) -> Option<&[Capability]>
pub fn capabilities(&self) -> Option<&[Capability]>
The proxy session capabilities.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The created time stamp, in ISO 8601 format.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The updated time stamp, in ISO 8601 format.
sourcepub fn ended_timestamp(&self) -> Option<&DateTime>
pub fn ended_timestamp(&self) -> Option<&DateTime>
The ended time stamp, in ISO 8601 format.
sourcepub fn participants(&self) -> Option<&[Participant]>
pub fn participants(&self) -> Option<&[Participant]>
The proxy session participants.
sourcepub fn number_selection_behavior(&self) -> Option<&NumberSelectionBehavior>
pub fn number_selection_behavior(&self) -> Option<&NumberSelectionBehavior>
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
sourcepub fn geo_match_level(&self) -> Option<&GeoMatchLevel>
pub fn geo_match_level(&self) -> Option<&GeoMatchLevel>
The preference for matching the country or area code of the proxy phone number with that of the first participant.
sourcepub fn geo_match_params(&self) -> Option<&GeoMatchParams>
pub fn geo_match_params(&self) -> Option<&GeoMatchParams>
The country and area code for the proxy phone number.
sourceimpl ProxySession
impl ProxySession
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProxySession.
Trait Implementations
sourceimpl Clone for ProxySession
impl Clone for ProxySession
sourcefn clone(&self) -> ProxySession
fn clone(&self) -> ProxySession
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ProxySession
impl Debug for ProxySession
sourceimpl PartialEq<ProxySession> for ProxySession
impl PartialEq<ProxySession> for ProxySession
sourcefn eq(&self, other: &ProxySession) -> bool
fn eq(&self, other: &ProxySession) -> bool
impl StructuralPartialEq for ProxySession
Auto Trait Implementations
impl RefUnwindSafe for ProxySession
impl Send for ProxySession
impl Sync for ProxySession
impl Unpin for ProxySession
impl UnwindSafe for ProxySession
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more