[][src]Struct rusoto_chime::CreateProxySessionRequest

pub struct CreateProxySessionRequest {
    pub capabilities: Vec<String>,
    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 participant_phone_numbers: Vec<String>,
    pub voice_connector_id: String,
}

Fields

capabilities: Vec<String>

The proxy session capabilities.

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.

participant_phone_numbers: Vec<String>

The participant phone numbers.

voice_connector_id: String

The Amazon Chime voice connector ID.

Trait Implementations

impl Clone for CreateProxySessionRequest[src]

impl Debug for CreateProxySessionRequest[src]

impl Default for CreateProxySessionRequest[src]

impl PartialEq<CreateProxySessionRequest> for CreateProxySessionRequest[src]

impl Serialize for CreateProxySessionRequest[src]

impl StructuralPartialEq for CreateProxySessionRequest[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> From<T> 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.