#[non_exhaustive]pub struct DeleteUtterancesInput {
pub bot_id: Option<String>,
pub locale_id: Option<String>,
pub session_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_id: Option<String>The unique identifier of the bot that contains the utterances.
locale_id: Option<String>The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see Supported languages.
session_id: Option<String>The unique identifier of the session with the user. The ID is returned in the response from the RecognizeText and RecognizeUtterance operations.
Implementations§
source§impl DeleteUtterancesInput
impl DeleteUtterancesInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot that contains the utterances.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The unique identifier of the session with the user. The ID is returned in the response from the RecognizeText and RecognizeUtterance operations.
source§impl DeleteUtterancesInput
impl DeleteUtterancesInput
sourcepub fn builder() -> DeleteUtterancesInputBuilder
pub fn builder() -> DeleteUtterancesInputBuilder
Creates a new builder-style object to manufacture DeleteUtterancesInput.
Trait Implementations§
source§impl Clone for DeleteUtterancesInput
impl Clone for DeleteUtterancesInput
source§fn clone(&self) -> DeleteUtterancesInput
fn clone(&self) -> DeleteUtterancesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteUtterancesInput
impl Debug for DeleteUtterancesInput
source§impl PartialEq for DeleteUtterancesInput
impl PartialEq for DeleteUtterancesInput
source§fn eq(&self, other: &DeleteUtterancesInput) -> bool
fn eq(&self, other: &DeleteUtterancesInput) -> bool
self and other values to be equal, and is used
by ==.