pub struct GetIntentVersionsResponse {
pub intents: Option<Vec<IntentMetadata>>,
pub next_token: Option<String>,
}Fields§
§intents: Option<Vec<IntentMetadata>>An array of IntentMetadata objects, one for each numbered version of the intent plus one for the $LATEST version.
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 GetIntentVersionsResponse
impl Clone for GetIntentVersionsResponse
Source§fn clone(&self) -> GetIntentVersionsResponse
fn clone(&self) -> GetIntentVersionsResponse
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 GetIntentVersionsResponse
impl Debug for GetIntentVersionsResponse
Source§impl Default for GetIntentVersionsResponse
impl Default for GetIntentVersionsResponse
Source§fn default() -> GetIntentVersionsResponse
fn default() -> GetIntentVersionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetIntentVersionsResponse
impl<'de> Deserialize<'de> for GetIntentVersionsResponse
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
impl StructuralPartialEq for GetIntentVersionsResponse
Auto Trait Implementations§
impl Freeze for GetIntentVersionsResponse
impl RefUnwindSafe for GetIntentVersionsResponse
impl Send for GetIntentVersionsResponse
impl Sync for GetIntentVersionsResponse
impl Unpin for GetIntentVersionsResponse
impl UnwindSafe for GetIntentVersionsResponse
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