[][src]Struct rusoto_chime::Bot

pub struct Bot {
    pub bot_email: Option<String>,
    pub bot_id: Option<String>,
    pub bot_type: Option<String>,
    pub created_timestamp: Option<f64>,
    pub disabled: Option<bool>,
    pub display_name: Option<String>,
    pub security_token: Option<String>,
    pub updated_timestamp: Option<f64>,
    pub user_id: Option<String>,
}

A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.

Fields

bot_email: Option<String>

The bot email address.

bot_id: Option<String>

The bot ID.

bot_type: Option<String>

The bot type.

created_timestamp: Option<f64>

The bot creation timestamp, in ISO 8601 format.

disabled: Option<bool>

When true, the bot is stopped from running in your account.

display_name: Option<String>

The bot display name.

security_token: Option<String>

The security token used to authenticate Amazon Chime with the outgoing event endpoint.

updated_timestamp: Option<f64>

The updated bot timestamp, in ISO 8601 format.

user_id: Option<String>

The unique ID for the bot user.

Trait Implementations

impl Clone for Bot[src]

impl Debug for Bot[src]

impl Default for Bot[src]

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

impl PartialEq<Bot> for Bot[src]

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