[][src]Struct rusoto_chime::Proxy

pub struct Proxy {
    pub default_session_expiry_minutes: Option<i64>,
    pub disabled: Option<bool>,
    pub fall_back_phone_number: Option<String>,
    pub phone_number_countries: Option<Vec<String>>,
}

The proxy configuration for an Amazon Chime Voice Connector.

Fields

default_session_expiry_minutes: Option<i64>

The default number of minutes allowed for proxy sessions.

disabled: Option<bool>

When true, stops proxy sessions from being created on the specified Amazon Chime Voice Connector.

fall_back_phone_number: Option<String>

The phone number to route calls to after a proxy session expires.

phone_number_countries: Option<Vec<String>>

The countries for proxy phone numbers to be selected from.

Trait Implementations

impl Clone for Proxy[src]

impl Debug for Proxy[src]

impl Default for Proxy[src]

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

impl PartialEq<Proxy> for Proxy[src]

impl StructuralPartialEq for Proxy[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.