pub struct GetBotsRequest {
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of bots to return in the response that the request will return. The default is 10.
name_contains: Option<String>Substring to match in bot names. A bot will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."
next_token: Option<String>A pagination token that fetches the next page of bots. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of bots, specify the pagination token in the next request.
Trait Implementations§
Source§impl Clone for GetBotsRequest
impl Clone for GetBotsRequest
Source§fn clone(&self) -> GetBotsRequest
fn clone(&self) -> GetBotsRequest
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 GetBotsRequest
impl Debug for GetBotsRequest
Source§impl Default for GetBotsRequest
impl Default for GetBotsRequest
Source§fn default() -> GetBotsRequest
fn default() -> GetBotsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBotsRequest
impl PartialEq for GetBotsRequest
Source§impl Serialize for GetBotsRequest
impl Serialize for GetBotsRequest
impl StructuralPartialEq for GetBotsRequest
Auto Trait Implementations§
impl Freeze for GetBotsRequest
impl RefUnwindSafe for GetBotsRequest
impl Send for GetBotsRequest
impl Sync for GetBotsRequest
impl Unpin for GetBotsRequest
impl UnwindSafe for GetBotsRequest
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