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