[][src]Struct rusoto_chime::EventsConfiguration

pub struct EventsConfiguration {
    pub bot_id: Option<String>,
    pub lambda_function_arn: Option<String>,
    pub outbound_events_https_endpoint: Option<String>,
}

The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.

Fields

bot_id: Option<String>

The bot ID.

lambda_function_arn: Option<String>

Lambda function ARN that allows a bot to receive outgoing events.

outbound_events_https_endpoint: Option<String>

HTTPS endpoint that allows a bot to receive outgoing events.

Trait Implementations

impl Clone for EventsConfiguration[src]

impl Debug for EventsConfiguration[src]

impl Default for EventsConfiguration[src]

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

impl PartialEq<EventsConfiguration> for EventsConfiguration[src]

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