[−][src]Struct rusoto_lex_models::BotChannelAssociation
Represents an association between an Amazon Lex bot and an external messaging platform.
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 necessary to communicate with the messaging platform.
bot_name: Option<String>
The name of the Amazon Lex bot to which this association is being made.
Currently, Amazon Lex supports associations with Facebook and Slack, and Twilio.
created_date: Option<f64>
The date that the association between the Amazon Lex bot and the channel was created.
description: Option<String>
A text description of the association you are creating.
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 thefailureReason
field.
type_: Option<String>
Specifies the type of association by indicating the type of channel being established between the Amazon Lex bot and the external messaging platform.
Trait Implementations
impl PartialEq<BotChannelAssociation> for BotChannelAssociation
[src]
fn eq(&self, other: &BotChannelAssociation) -> bool
[src]
fn ne(&self, other: &BotChannelAssociation) -> bool
[src]
impl Default for BotChannelAssociation
[src]
fn default() -> BotChannelAssociation
[src]
impl Clone for BotChannelAssociation
[src]
fn clone(&self) -> BotChannelAssociation
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for BotChannelAssociation
[src]
impl<'de> Deserialize<'de> for BotChannelAssociation
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for BotChannelAssociation
impl Sync for BotChannelAssociation
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self