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§
Source§impl Clone for GetBotChannelAssociationsResponse
impl Clone for GetBotChannelAssociationsResponse
Source§fn clone(&self) -> GetBotChannelAssociationsResponse
fn clone(&self) -> GetBotChannelAssociationsResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetBotChannelAssociationsResponse
impl Default for GetBotChannelAssociationsResponse
Source§fn default() -> GetBotChannelAssociationsResponse
fn default() -> GetBotChannelAssociationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBotChannelAssociationsResponse
impl<'de> Deserialize<'de> for GetBotChannelAssociationsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetBotChannelAssociationsResponse
impl PartialEq for GetBotChannelAssociationsResponse
Source§fn eq(&self, other: &GetBotChannelAssociationsResponse) -> bool
fn eq(&self, other: &GetBotChannelAssociationsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetBotChannelAssociationsResponse
Auto Trait Implementations§
impl Freeze for GetBotChannelAssociationsResponse
impl RefUnwindSafe for GetBotChannelAssociationsResponse
impl Send for GetBotChannelAssociationsResponse
impl Sync for GetBotChannelAssociationsResponse
impl Unpin for GetBotChannelAssociationsResponse
impl UnwindSafe for GetBotChannelAssociationsResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more