[][src]Struct rusoto_chime::VoiceConnectorGroup

pub struct VoiceConnectorGroup {
    pub created_timestamp: Option<f64>,
    pub name: Option<String>,
    pub updated_timestamp: Option<f64>,
    pub voice_connector_group_id: Option<String>,
    pub voice_connector_items: Option<Vec<VoiceConnectorItem>>,
}

The Amazon Chime Voice Connector group configuration, including associated Amazon Chime Voice Connectors. You can include Amazon Chime Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.

Fields

created_timestamp: Option<f64>

The Amazon Chime Voice Connector group creation timestamp, in ISO 8601 format.

name: Option<String>

The name of the Amazon Chime Voice Connector group.

updated_timestamp: Option<f64>

The updated Amazon Chime Voice Connector group timestamp, in ISO 8601 format.

voice_connector_group_id: Option<String>

The Amazon Chime Voice Connector group ID.

voice_connector_items: Option<Vec<VoiceConnectorItem>>

The Amazon Chime Voice Connectors to which to route inbound calls.

Trait Implementations

impl Clone for VoiceConnectorGroup[src]

impl Debug for VoiceConnectorGroup[src]

impl Default for VoiceConnectorGroup[src]

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

impl PartialEq<VoiceConnectorGroup> for VoiceConnectorGroup[src]

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