[][src]Struct rusoto_lex_models::GetBotChannelAssociationsResponse

pub struct GetBotChannelAssociationsResponse {
    pub bot_channel_associations: Option<Vec<BotChannelAssociation>>,
    pub next_token: Option<String>,
}

Fields

bot_channel_associations: Option<Vec<BotChannelAssociation>>

An array of objects, one for each association, that provides information about the Amazon Lex bot and its association with the channel.

next_token: Option<String>

A pagination token that fetches the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request.

Trait Implementations

impl Clone for GetBotChannelAssociationsResponse[src]

impl Debug for GetBotChannelAssociationsResponse[src]

impl Default for GetBotChannelAssociationsResponse[src]

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

impl PartialEq<GetBotChannelAssociationsResponse> for GetBotChannelAssociationsResponse[src]

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