pub struct GetBotVersionsRequest {
pub max_results: Option<i64>,
pub name: String,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of bot versions to return in the response. The default is 10.
name: StringThe name of the bot for which versions should be returned.
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 GetBotVersionsRequest
impl Clone for GetBotVersionsRequest
Source§fn clone(&self) -> GetBotVersionsRequest
fn clone(&self) -> GetBotVersionsRequest
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 GetBotVersionsRequest
impl Debug for GetBotVersionsRequest
Source§impl Default for GetBotVersionsRequest
impl Default for GetBotVersionsRequest
Source§fn default() -> GetBotVersionsRequest
fn default() -> GetBotVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBotVersionsRequest
impl PartialEq for GetBotVersionsRequest
Source§impl Serialize for GetBotVersionsRequest
impl Serialize for GetBotVersionsRequest
impl StructuralPartialEq for GetBotVersionsRequest
Auto Trait Implementations§
impl Freeze for GetBotVersionsRequest
impl RefUnwindSafe for GetBotVersionsRequest
impl Send for GetBotVersionsRequest
impl Sync for GetBotVersionsRequest
impl Unpin for GetBotVersionsRequest
impl UnwindSafe for GetBotVersionsRequest
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