Struct aws_sdk_lexruntimev2::input::RecognizeTextInput
source · #[non_exhaustive]pub struct RecognizeTextInput { /* private fields */ }Implementations§
source§impl RecognizeTextInput
impl RecognizeTextInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RecognizeText, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RecognizeText, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RecognizeText>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecognizeTextInput.
source§impl RecognizeTextInput
impl RecognizeTextInput
sourcepub fn bot_alias_id(&self) -> Option<&str>
pub fn bot_alias_id(&self) -> Option<&str>
The alias identifier in use for the bot that processes the request.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The identifier of the user session that is having the conversation.
sourcepub fn text(&self) -> Option<&str>
pub fn text(&self) -> Option<&str>
The text that the user entered. Amazon Lex V2 interprets this text.
sourcepub fn session_state(&self) -> Option<&SessionState>
pub fn session_state(&self) -> Option<&SessionState>
The current state of the dialog between the user and the bot.
Trait Implementations§
source§impl Clone for RecognizeTextInput
impl Clone for RecognizeTextInput
source§fn clone(&self) -> RecognizeTextInput
fn clone(&self) -> RecognizeTextInput
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 RecognizeTextInput
impl Debug for RecognizeTextInput
source§impl PartialEq<RecognizeTextInput> for RecognizeTextInput
impl PartialEq<RecognizeTextInput> for RecognizeTextInput
source§fn eq(&self, other: &RecognizeTextInput) -> bool
fn eq(&self, other: &RecognizeTextInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.