pub struct GetIntentsRequest {
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of intents to return in the response. The default is 10.
name_contains: Option<String>Substring to match in intent names. An intent 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 intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request.
Trait Implementations§
Source§impl Clone for GetIntentsRequest
impl Clone for GetIntentsRequest
Source§fn clone(&self) -> GetIntentsRequest
fn clone(&self) -> GetIntentsRequest
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 GetIntentsRequest
impl Debug for GetIntentsRequest
Source§impl Default for GetIntentsRequest
impl Default for GetIntentsRequest
Source§fn default() -> GetIntentsRequest
fn default() -> GetIntentsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetIntentsRequest
impl PartialEq for GetIntentsRequest
Source§impl Serialize for GetIntentsRequest
impl Serialize for GetIntentsRequest
impl StructuralPartialEq for GetIntentsRequest
Auto Trait Implementations§
impl Freeze for GetIntentsRequest
impl RefUnwindSafe for GetIntentsRequest
impl Send for GetIntentsRequest
impl Sync for GetIntentsRequest
impl Unpin for GetIntentsRequest
impl UnwindSafe for GetIntentsRequest
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