[][src]Struct rusoto_lex_models::GetBotChannelAssociationResponse

pub struct GetBotChannelAssociationResponse {
    pub bot_alias: Option<String>,
    pub bot_configuration: Option<HashMap<String, String>>,
    pub bot_name: Option<String>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub failure_reason: Option<String>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
}

Fields

bot_alias: Option<String>

An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.

bot_configuration: Option<HashMap<String, String>>

Provides information that the messaging platform needs to communicate with the Amazon Lex bot.

bot_name: Option<String>

The name of the Amazon Lex bot.

created_date: Option<f64>

The date that the association between the bot and the channel was created.

description: Option<String>

A description of the association between the bot and the channel.

failure_reason: Option<String>

If status is FAILED, Amazon Lex provides the reason that it failed to create the association.

name: Option<String>

The name of the association between the bot and the channel.

status: Option<String>

The status of the bot channel.

  • CREATED - The channel has been created and is ready for use.

  • IN_PROGRESS - Channel creation is in progress.

  • FAILED - There was an error creating the channel. For information about the reason for the failure, see the failureReason field.

type_: Option<String>

The type of the messaging platform.

Trait Implementations

impl Clone for GetBotChannelAssociationResponse[src]

impl Debug for GetBotChannelAssociationResponse[src]

impl Default for GetBotChannelAssociationResponse[src]

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

impl PartialEq<GetBotChannelAssociationResponse> for GetBotChannelAssociationResponse[src]

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