Struct aws_sdk_lexruntime::model::PredictedIntent
source · #[non_exhaustive]pub struct PredictedIntent { /* private fields */ }
Expand description
An intent that Amazon Lex suggests satisfies the user's intent. Includes the name of the intent, the confidence that Amazon Lex has that the user's intent is satisfied, and the slots defined for the intent.
Implementations§
source§impl PredictedIntent
impl PredictedIntent
sourcepub fn intent_name(&self) -> Option<&str>
pub fn intent_name(&self) -> Option<&str>
The name of the intent that Amazon Lex suggests satisfies the user's intent.
sourcepub fn nlu_intent_confidence(&self) -> Option<&IntentConfidence>
pub fn nlu_intent_confidence(&self) -> Option<&IntentConfidence>
Indicates how confident Amazon Lex is that an intent satisfies the user's intent.
source§impl PredictedIntent
impl PredictedIntent
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PredictedIntent
.
Trait Implementations§
source§impl Clone for PredictedIntent
impl Clone for PredictedIntent
source§fn clone(&self) -> PredictedIntent
fn clone(&self) -> PredictedIntent
Returns a copy 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 PredictedIntent
impl Debug for PredictedIntent
source§impl PartialEq<PredictedIntent> for PredictedIntent
impl PartialEq<PredictedIntent> for PredictedIntent
source§fn eq(&self, other: &PredictedIntent) -> bool
fn eq(&self, other: &PredictedIntent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.