[][src]Struct rusoto_chime::ProxySession

pub struct ProxySession {
    pub capabilities: Option<Vec<String>>,
    pub created_timestamp: Option<f64>,
    pub ended_timestamp: Option<f64>,
    pub expiry_minutes: Option<i64>,
    pub geo_match_level: Option<String>,
    pub geo_match_params: Option<GeoMatchParams>,
    pub name: Option<String>,
    pub number_selection_behavior: Option<String>,
    pub participants: Option<Vec<Participant>>,
    pub proxy_session_id: Option<String>,
    pub status: Option<String>,
    pub updated_timestamp: Option<f64>,
    pub voice_connector_id: Option<String>,
}

The proxy session for an Amazon Chime Voice Connector.

Fields

capabilities: Option<Vec<String>>

The proxy session capabilities.

created_timestamp: Option<f64>

The created timestamp, in ISO 8601 format.

ended_timestamp: Option<f64>

The ended timestamp, in ISO 8601 format.

expiry_minutes: Option<i64>

The number of minutes allowed for the proxy session.

geo_match_level: Option<String>

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.

name: Option<String>

The name of the proxy session.

number_selection_behavior: Option<String>

The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.

participants: Option<Vec<Participant>>

The proxy session participants.

proxy_session_id: Option<String>

The proxy session ID.

status: Option<String>

The status of the proxy session.

updated_timestamp: Option<f64>

The updated timestamp, in ISO 8601 format.

voice_connector_id: Option<String>

The Amazon Chime voice connector ID.

Trait Implementations

impl Clone for ProxySession[src]

impl Debug for ProxySession[src]

impl Default for ProxySession[src]

impl<'de> Deserialize<'de> for ProxySession[src]

impl PartialEq<ProxySession> for ProxySession[src]

impl StructuralPartialEq for ProxySession[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.