pub struct GetBotVersionsResponse {
pub bots: Option<Vec<BotMetadata>>,
pub next_token: Option<String>,
}Fields§
§bots: Option<Vec<BotMetadata>>An array of BotMetadata objects, one for each numbered version of the bot plus one for the $LATEST version.
next_token: Option<String>A pagination token for fetching the next page of bot versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request.
Trait Implementations§
Source§impl Clone for GetBotVersionsResponse
impl Clone for GetBotVersionsResponse
Source§fn clone(&self) -> GetBotVersionsResponse
fn clone(&self) -> GetBotVersionsResponse
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 Debug for GetBotVersionsResponse
impl Debug for GetBotVersionsResponse
Source§impl Default for GetBotVersionsResponse
impl Default for GetBotVersionsResponse
Source§fn default() -> GetBotVersionsResponse
fn default() -> GetBotVersionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBotVersionsResponse
impl<'de> Deserialize<'de> for GetBotVersionsResponse
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 GetBotVersionsResponse
impl PartialEq for GetBotVersionsResponse
impl StructuralPartialEq for GetBotVersionsResponse
Auto Trait Implementations§
impl Freeze for GetBotVersionsResponse
impl RefUnwindSafe for GetBotVersionsResponse
impl Send for GetBotVersionsResponse
impl Sync for GetBotVersionsResponse
impl Unpin for GetBotVersionsResponse
impl UnwindSafe for GetBotVersionsResponse
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