Struct aws_sdk_chime::types::ProxySession
source · #[non_exhaustive]pub struct ProxySession {Show 13 fields
pub voice_connector_id: Option<String>,
pub proxy_session_id: Option<String>,
pub name: Option<String>,
pub status: Option<ProxySessionStatus>,
pub expiry_minutes: Option<i32>,
pub capabilities: Option<Vec<Capability>>,
pub created_timestamp: Option<DateTime>,
pub updated_timestamp: Option<DateTime>,
pub ended_timestamp: Option<DateTime>,
pub participants: Option<Vec<Participant>>,
pub number_selection_behavior: Option<NumberSelectionBehavior>,
pub geo_match_level: Option<GeoMatchLevel>,
pub geo_match_params: Option<GeoMatchParams>,
}
Expand description
The proxy session for an Amazon Chime Voice Connector.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.voice_connector_id: Option<String>
The Amazon Chime voice connector ID.
proxy_session_id: Option<String>
The proxy session ID.
name: Option<String>
The name of the proxy session.
status: Option<ProxySessionStatus>
The status of the proxy session.
expiry_minutes: Option<i32>
The number of minutes allowed for the proxy session.
capabilities: Option<Vec<Capability>>
The proxy session capabilities.
created_timestamp: Option<DateTime>
The created time stamp, in ISO 8601 format.
updated_timestamp: Option<DateTime>
The updated time stamp, in ISO 8601 format.
ended_timestamp: Option<DateTime>
The ended time stamp, in ISO 8601 format.
participants: Option<Vec<Participant>>
The proxy session participants.
number_selection_behavior: Option<NumberSelectionBehavior>
The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
geo_match_level: Option<GeoMatchLevel>
The preference for matching the country or area code of the proxy phone number with that of the first participant.
geo_match_params: Option<GeoMatchParams>
The country and area code for the proxy phone number.
Implementations§
source§impl 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) -> &[Capability]
pub fn capabilities(&self) -> &[Capability]
The proxy session capabilities.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .capabilities.is_none()
.
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) -> &[Participant]
pub fn participants(&self) -> &[Participant]
The proxy session participants.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .participants.is_none()
.
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.
source§impl ProxySession
impl ProxySession
sourcepub fn builder() -> ProxySessionBuilder
pub fn builder() -> ProxySessionBuilder
Creates a new builder-style object to manufacture ProxySession
.
Trait Implementations§
source§impl Clone for ProxySession
impl Clone for ProxySession
source§fn clone(&self) -> ProxySession
fn clone(&self) -> ProxySession
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProxySession
impl Debug for ProxySession
source§impl PartialEq for ProxySession
impl PartialEq for ProxySession
source§fn eq(&self, other: &ProxySession) -> bool
fn eq(&self, other: &ProxySession) -> bool
self
and other
values to be equal, and is used
by ==
.