// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq)]
pub struct PostTextOutput {
/// <p>The current user intent that Amazon Lex is aware of.</p>
pub intent_name: ::std::option::Option<::std::string::String>,
/// <p>Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html">Confidence Scores</a>.</p>
/// <p>The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.</p>
pub nlu_intent_confidence: ::std::option::Option<crate::types::IntentConfidence>,
/// <p>One to four alternative intents that may be applicable to the user's intent.</p>
/// <p>Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score.</p>
pub alternative_intents: ::std::option::Option<::std::vec::Vec<crate::types::PredictedIntent>>,
/// <p>The intent slots that Amazon Lex detected from the user input in the conversation.</p>
/// <p>Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the <code>valueSelectionStrategy</code> selected when the slot type was created or updated. If <code>valueSelectionStrategy</code> is set to <code>ORIGINAL_VALUE</code>, the value provided by the user is returned, if the user value is similar to the slot values. If <code>valueSelectionStrategy</code> is set to <code>TOP_RESOLUTION</code> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p>
pub slots: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
/// <p>A map of key-value pairs representing the session-specific context information.</p>
pub session_attributes: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
/// <p>The message to convey to the user. The message can come from the bot's configuration or from a Lambda function.</p>
/// <p>If the intent is not configured with a Lambda function, or if the Lambda function returned <code>Delegate</code> as the <code>dialogAction.type</code> its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message.</p>
/// <p>When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see <code>msg-prompts-formats</code>.</p>
/// <p>If the Lambda function returns a message, Amazon Lex passes it to the client in its response.</p>
pub message: ::std::option::Option<::std::string::String>,
/// <p>The sentiment expressed in and utterance.</p>
/// <p>When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.</p>
pub sentiment_response: ::std::option::Option<crate::types::SentimentResponse>,
/// <p>The format of the response message. One of the following values:</p>
/// <ul>
/// <li>
/// <p><code>PlainText</code> - The message contains plain UTF-8 text.</p></li>
/// <li>
/// <p><code>CustomPayload</code> - The message is a custom format defined by the Lambda function.</p></li>
/// <li>
/// <p><code>SSML</code> - The message contains text formatted for voice output.</p></li>
/// <li>
/// <p><code>Composite</code> - The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.</p></li>
/// </ul>
pub message_format: ::std::option::Option<crate::types::MessageFormatType>,
/// <p>Identifies the current state of the user interaction. Amazon Lex returns one of the following values as <code>dialogState</code>. The client can optionally use this information to customize the user interface.</p>
/// <ul>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit user intent.</p>
/// <p>For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState.</p></li>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response.</p>
/// <p>For example, Amazon Lex wants user confirmation before fulfilling an intent.</p>
/// <p>Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink).</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting a slot value for the current intent.</p>
/// <p>For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user failed.</p>
/// <p>This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent.</p></li>
/// </ul>
pub dialog_state: ::std::option::Option<crate::types::DialogState>,
/// <p>If the <code>dialogState</code> value is <code>ElicitSlot</code>, returns the name of the slot for which Amazon Lex is eliciting a value.</p>
pub slot_to_elicit: ::std::option::Option<::std::string::String>,
/// <p>Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function).</p>
pub response_card: ::std::option::Option<crate::types::ResponseCard>,
/// <p>A unique identifier for the session.</p>
pub session_id: ::std::option::Option<::std::string::String>,
/// <p>The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.</p>
pub bot_version: ::std::option::Option<::std::string::String>,
/// <p>A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the <code>PostContent</code>, <code>PostText</code>, or <code>PutSession</code> operation.</p>
/// <p>You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.</p>
pub active_contexts: ::std::option::Option<::std::vec::Vec<crate::types::ActiveContext>>,
_request_id: Option<String>,
}
impl PostTextOutput {
/// <p>The current user intent that Amazon Lex is aware of.</p>
pub fn intent_name(&self) -> ::std::option::Option<&str> {
self.intent_name.as_deref()
}
/// <p>Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html">Confidence Scores</a>.</p>
/// <p>The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.</p>
pub fn nlu_intent_confidence(&self) -> ::std::option::Option<&crate::types::IntentConfidence> {
self.nlu_intent_confidence.as_ref()
}
/// <p>One to four alternative intents that may be applicable to the user's intent.</p>
/// <p>Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.alternative_intents.is_none()`.
pub fn alternative_intents(&self) -> &[crate::types::PredictedIntent] {
self.alternative_intents.as_deref().unwrap_or_default()
}
/// <p>The intent slots that Amazon Lex detected from the user input in the conversation.</p>
/// <p>Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the <code>valueSelectionStrategy</code> selected when the slot type was created or updated. If <code>valueSelectionStrategy</code> is set to <code>ORIGINAL_VALUE</code>, the value provided by the user is returned, if the user value is similar to the slot values. If <code>valueSelectionStrategy</code> is set to <code>TOP_RESOLUTION</code> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p>
pub fn slots(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.slots.as_ref()
}
/// <p>A map of key-value pairs representing the session-specific context information.</p>
pub fn session_attributes(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.session_attributes.as_ref()
}
/// <p>The message to convey to the user. The message can come from the bot's configuration or from a Lambda function.</p>
/// <p>If the intent is not configured with a Lambda function, or if the Lambda function returned <code>Delegate</code> as the <code>dialogAction.type</code> its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message.</p>
/// <p>When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see <code>msg-prompts-formats</code>.</p>
/// <p>If the Lambda function returns a message, Amazon Lex passes it to the client in its response.</p>
pub fn message(&self) -> ::std::option::Option<&str> {
self.message.as_deref()
}
/// <p>The sentiment expressed in and utterance.</p>
/// <p>When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.</p>
pub fn sentiment_response(&self) -> ::std::option::Option<&crate::types::SentimentResponse> {
self.sentiment_response.as_ref()
}
/// <p>The format of the response message. One of the following values:</p>
/// <ul>
/// <li>
/// <p><code>PlainText</code> - The message contains plain UTF-8 text.</p></li>
/// <li>
/// <p><code>CustomPayload</code> - The message is a custom format defined by the Lambda function.</p></li>
/// <li>
/// <p><code>SSML</code> - The message contains text formatted for voice output.</p></li>
/// <li>
/// <p><code>Composite</code> - The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.</p></li>
/// </ul>
pub fn message_format(&self) -> ::std::option::Option<&crate::types::MessageFormatType> {
self.message_format.as_ref()
}
/// <p>Identifies the current state of the user interaction. Amazon Lex returns one of the following values as <code>dialogState</code>. The client can optionally use this information to customize the user interface.</p>
/// <ul>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit user intent.</p>
/// <p>For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState.</p></li>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response.</p>
/// <p>For example, Amazon Lex wants user confirmation before fulfilling an intent.</p>
/// <p>Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink).</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting a slot value for the current intent.</p>
/// <p>For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user failed.</p>
/// <p>This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent.</p></li>
/// </ul>
pub fn dialog_state(&self) -> ::std::option::Option<&crate::types::DialogState> {
self.dialog_state.as_ref()
}
/// <p>If the <code>dialogState</code> value is <code>ElicitSlot</code>, returns the name of the slot for which Amazon Lex is eliciting a value.</p>
pub fn slot_to_elicit(&self) -> ::std::option::Option<&str> {
self.slot_to_elicit.as_deref()
}
/// <p>Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function).</p>
pub fn response_card(&self) -> ::std::option::Option<&crate::types::ResponseCard> {
self.response_card.as_ref()
}
/// <p>A unique identifier for the session.</p>
pub fn session_id(&self) -> ::std::option::Option<&str> {
self.session_id.as_deref()
}
/// <p>The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.</p>
pub fn bot_version(&self) -> ::std::option::Option<&str> {
self.bot_version.as_deref()
}
/// <p>A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the <code>PostContent</code>, <code>PostText</code>, or <code>PutSession</code> operation.</p>
/// <p>You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.active_contexts.is_none()`.
pub fn active_contexts(&self) -> &[crate::types::ActiveContext] {
self.active_contexts.as_deref().unwrap_or_default()
}
}
impl ::std::fmt::Debug for PostTextOutput {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("PostTextOutput");
formatter.field("intent_name", &self.intent_name);
formatter.field("nlu_intent_confidence", &self.nlu_intent_confidence);
formatter.field("alternative_intents", &self.alternative_intents);
formatter.field("slots", &"*** Sensitive Data Redacted ***");
formatter.field("session_attributes", &"*** Sensitive Data Redacted ***");
formatter.field("message", &"*** Sensitive Data Redacted ***");
formatter.field("sentiment_response", &self.sentiment_response);
formatter.field("message_format", &self.message_format);
formatter.field("dialog_state", &self.dialog_state);
formatter.field("slot_to_elicit", &self.slot_to_elicit);
formatter.field("response_card", &self.response_card);
formatter.field("session_id", &self.session_id);
formatter.field("bot_version", &self.bot_version);
formatter.field("active_contexts", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}
impl ::aws_types::request_id::RequestId for PostTextOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl PostTextOutput {
/// Creates a new builder-style object to manufacture [`PostTextOutput`](crate::operation::post_text::PostTextOutput).
pub fn builder() -> crate::operation::post_text::builders::PostTextOutputBuilder {
crate::operation::post_text::builders::PostTextOutputBuilder::default()
}
}
/// A builder for [`PostTextOutput`](crate::operation::post_text::PostTextOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default)]
#[non_exhaustive]
pub struct PostTextOutputBuilder {
pub(crate) intent_name: ::std::option::Option<::std::string::String>,
pub(crate) nlu_intent_confidence: ::std::option::Option<crate::types::IntentConfidence>,
pub(crate) alternative_intents: ::std::option::Option<::std::vec::Vec<crate::types::PredictedIntent>>,
pub(crate) slots: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
pub(crate) session_attributes: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
pub(crate) message: ::std::option::Option<::std::string::String>,
pub(crate) sentiment_response: ::std::option::Option<crate::types::SentimentResponse>,
pub(crate) message_format: ::std::option::Option<crate::types::MessageFormatType>,
pub(crate) dialog_state: ::std::option::Option<crate::types::DialogState>,
pub(crate) slot_to_elicit: ::std::option::Option<::std::string::String>,
pub(crate) response_card: ::std::option::Option<crate::types::ResponseCard>,
pub(crate) session_id: ::std::option::Option<::std::string::String>,
pub(crate) bot_version: ::std::option::Option<::std::string::String>,
pub(crate) active_contexts: ::std::option::Option<::std::vec::Vec<crate::types::ActiveContext>>,
_request_id: Option<String>,
}
impl PostTextOutputBuilder {
/// <p>The current user intent that Amazon Lex is aware of.</p>
pub fn intent_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.intent_name = ::std::option::Option::Some(input.into());
self
}
/// <p>The current user intent that Amazon Lex is aware of.</p>
pub fn set_intent_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.intent_name = input;
self
}
/// <p>The current user intent that Amazon Lex is aware of.</p>
pub fn get_intent_name(&self) -> &::std::option::Option<::std::string::String> {
&self.intent_name
}
/// <p>Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html">Confidence Scores</a>.</p>
/// <p>The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.</p>
pub fn nlu_intent_confidence(mut self, input: crate::types::IntentConfidence) -> Self {
self.nlu_intent_confidence = ::std::option::Option::Some(input);
self
}
/// <p>Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html">Confidence Scores</a>.</p>
/// <p>The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.</p>
pub fn set_nlu_intent_confidence(mut self, input: ::std::option::Option<crate::types::IntentConfidence>) -> Self {
self.nlu_intent_confidence = input;
self
}
/// <p>Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html">Confidence Scores</a>.</p>
/// <p>The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.</p>
pub fn get_nlu_intent_confidence(&self) -> &::std::option::Option<crate::types::IntentConfidence> {
&self.nlu_intent_confidence
}
/// Appends an item to `alternative_intents`.
///
/// To override the contents of this collection use [`set_alternative_intents`](Self::set_alternative_intents).
///
/// <p>One to four alternative intents that may be applicable to the user's intent.</p>
/// <p>Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score.</p>
pub fn alternative_intents(mut self, input: crate::types::PredictedIntent) -> Self {
let mut v = self.alternative_intents.unwrap_or_default();
v.push(input);
self.alternative_intents = ::std::option::Option::Some(v);
self
}
/// <p>One to four alternative intents that may be applicable to the user's intent.</p>
/// <p>Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score.</p>
pub fn set_alternative_intents(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::PredictedIntent>>) -> Self {
self.alternative_intents = input;
self
}
/// <p>One to four alternative intents that may be applicable to the user's intent.</p>
/// <p>Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score.</p>
pub fn get_alternative_intents(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::PredictedIntent>> {
&self.alternative_intents
}
/// Adds a key-value pair to `slots`.
///
/// To override the contents of this collection use [`set_slots`](Self::set_slots).
///
/// <p>The intent slots that Amazon Lex detected from the user input in the conversation.</p>
/// <p>Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the <code>valueSelectionStrategy</code> selected when the slot type was created or updated. If <code>valueSelectionStrategy</code> is set to <code>ORIGINAL_VALUE</code>, the value provided by the user is returned, if the user value is similar to the slot values. If <code>valueSelectionStrategy</code> is set to <code>TOP_RESOLUTION</code> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p>
pub fn slots(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut hash_map = self.slots.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.slots = ::std::option::Option::Some(hash_map);
self
}
/// <p>The intent slots that Amazon Lex detected from the user input in the conversation.</p>
/// <p>Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the <code>valueSelectionStrategy</code> selected when the slot type was created or updated. If <code>valueSelectionStrategy</code> is set to <code>ORIGINAL_VALUE</code>, the value provided by the user is returned, if the user value is similar to the slot values. If <code>valueSelectionStrategy</code> is set to <code>TOP_RESOLUTION</code> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p>
pub fn set_slots(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.slots = input;
self
}
/// <p>The intent slots that Amazon Lex detected from the user input in the conversation.</p>
/// <p>Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the <code>valueSelectionStrategy</code> selected when the slot type was created or updated. If <code>valueSelectionStrategy</code> is set to <code>ORIGINAL_VALUE</code>, the value provided by the user is returned, if the user value is similar to the slot values. If <code>valueSelectionStrategy</code> is set to <code>TOP_RESOLUTION</code> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p>
pub fn get_slots(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.slots
}
/// Adds a key-value pair to `session_attributes`.
///
/// To override the contents of this collection use [`set_session_attributes`](Self::set_session_attributes).
///
/// <p>A map of key-value pairs representing the session-specific context information.</p>
pub fn session_attributes(
mut self,
k: impl ::std::convert::Into<::std::string::String>,
v: impl ::std::convert::Into<::std::string::String>,
) -> Self {
let mut hash_map = self.session_attributes.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.session_attributes = ::std::option::Option::Some(hash_map);
self
}
/// <p>A map of key-value pairs representing the session-specific context information.</p>
pub fn set_session_attributes(
mut self,
input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
) -> Self {
self.session_attributes = input;
self
}
/// <p>A map of key-value pairs representing the session-specific context information.</p>
pub fn get_session_attributes(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.session_attributes
}
/// <p>The message to convey to the user. The message can come from the bot's configuration or from a Lambda function.</p>
/// <p>If the intent is not configured with a Lambda function, or if the Lambda function returned <code>Delegate</code> as the <code>dialogAction.type</code> its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message.</p>
/// <p>When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see <code>msg-prompts-formats</code>.</p>
/// <p>If the Lambda function returns a message, Amazon Lex passes it to the client in its response.</p>
pub fn message(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.message = ::std::option::Option::Some(input.into());
self
}
/// <p>The message to convey to the user. The message can come from the bot's configuration or from a Lambda function.</p>
/// <p>If the intent is not configured with a Lambda function, or if the Lambda function returned <code>Delegate</code> as the <code>dialogAction.type</code> its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message.</p>
/// <p>When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see <code>msg-prompts-formats</code>.</p>
/// <p>If the Lambda function returns a message, Amazon Lex passes it to the client in its response.</p>
pub fn set_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.message = input;
self
}
/// <p>The message to convey to the user. The message can come from the bot's configuration or from a Lambda function.</p>
/// <p>If the intent is not configured with a Lambda function, or if the Lambda function returned <code>Delegate</code> as the <code>dialogAction.type</code> its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message.</p>
/// <p>When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see <code>msg-prompts-formats</code>.</p>
/// <p>If the Lambda function returns a message, Amazon Lex passes it to the client in its response.</p>
pub fn get_message(&self) -> &::std::option::Option<::std::string::String> {
&self.message
}
/// <p>The sentiment expressed in and utterance.</p>
/// <p>When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.</p>
pub fn sentiment_response(mut self, input: crate::types::SentimentResponse) -> Self {
self.sentiment_response = ::std::option::Option::Some(input);
self
}
/// <p>The sentiment expressed in and utterance.</p>
/// <p>When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.</p>
pub fn set_sentiment_response(mut self, input: ::std::option::Option<crate::types::SentimentResponse>) -> Self {
self.sentiment_response = input;
self
}
/// <p>The sentiment expressed in and utterance.</p>
/// <p>When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.</p>
pub fn get_sentiment_response(&self) -> &::std::option::Option<crate::types::SentimentResponse> {
&self.sentiment_response
}
/// <p>The format of the response message. One of the following values:</p>
/// <ul>
/// <li>
/// <p><code>PlainText</code> - The message contains plain UTF-8 text.</p></li>
/// <li>
/// <p><code>CustomPayload</code> - The message is a custom format defined by the Lambda function.</p></li>
/// <li>
/// <p><code>SSML</code> - The message contains text formatted for voice output.</p></li>
/// <li>
/// <p><code>Composite</code> - The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.</p></li>
/// </ul>
pub fn message_format(mut self, input: crate::types::MessageFormatType) -> Self {
self.message_format = ::std::option::Option::Some(input);
self
}
/// <p>The format of the response message. One of the following values:</p>
/// <ul>
/// <li>
/// <p><code>PlainText</code> - The message contains plain UTF-8 text.</p></li>
/// <li>
/// <p><code>CustomPayload</code> - The message is a custom format defined by the Lambda function.</p></li>
/// <li>
/// <p><code>SSML</code> - The message contains text formatted for voice output.</p></li>
/// <li>
/// <p><code>Composite</code> - The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.</p></li>
/// </ul>
pub fn set_message_format(mut self, input: ::std::option::Option<crate::types::MessageFormatType>) -> Self {
self.message_format = input;
self
}
/// <p>The format of the response message. One of the following values:</p>
/// <ul>
/// <li>
/// <p><code>PlainText</code> - The message contains plain UTF-8 text.</p></li>
/// <li>
/// <p><code>CustomPayload</code> - The message is a custom format defined by the Lambda function.</p></li>
/// <li>
/// <p><code>SSML</code> - The message contains text formatted for voice output.</p></li>
/// <li>
/// <p><code>Composite</code> - The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.</p></li>
/// </ul>
pub fn get_message_format(&self) -> &::std::option::Option<crate::types::MessageFormatType> {
&self.message_format
}
/// <p>Identifies the current state of the user interaction. Amazon Lex returns one of the following values as <code>dialogState</code>. The client can optionally use this information to customize the user interface.</p>
/// <ul>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit user intent.</p>
/// <p>For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState.</p></li>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response.</p>
/// <p>For example, Amazon Lex wants user confirmation before fulfilling an intent.</p>
/// <p>Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink).</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting a slot value for the current intent.</p>
/// <p>For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user failed.</p>
/// <p>This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent.</p></li>
/// </ul>
pub fn dialog_state(mut self, input: crate::types::DialogState) -> Self {
self.dialog_state = ::std::option::Option::Some(input);
self
}
/// <p>Identifies the current state of the user interaction. Amazon Lex returns one of the following values as <code>dialogState</code>. The client can optionally use this information to customize the user interface.</p>
/// <ul>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit user intent.</p>
/// <p>For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState.</p></li>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response.</p>
/// <p>For example, Amazon Lex wants user confirmation before fulfilling an intent.</p>
/// <p>Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink).</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting a slot value for the current intent.</p>
/// <p>For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user failed.</p>
/// <p>This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent.</p></li>
/// </ul>
pub fn set_dialog_state(mut self, input: ::std::option::Option<crate::types::DialogState>) -> Self {
self.dialog_state = input;
self
}
/// <p>Identifies the current state of the user interaction. Amazon Lex returns one of the following values as <code>dialogState</code>. The client can optionally use this information to customize the user interface.</p>
/// <ul>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit user intent.</p>
/// <p>For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState.</p></li>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response.</p>
/// <p>For example, Amazon Lex wants user confirmation before fulfilling an intent.</p>
/// <p>Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink).</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting a slot value for the current intent.</p>
/// <p>For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user failed.</p>
/// <p>This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent.</p></li>
/// </ul>
pub fn get_dialog_state(&self) -> &::std::option::Option<crate::types::DialogState> {
&self.dialog_state
}
/// <p>If the <code>dialogState</code> value is <code>ElicitSlot</code>, returns the name of the slot for which Amazon Lex is eliciting a value.</p>
pub fn slot_to_elicit(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.slot_to_elicit = ::std::option::Option::Some(input.into());
self
}
/// <p>If the <code>dialogState</code> value is <code>ElicitSlot</code>, returns the name of the slot for which Amazon Lex is eliciting a value.</p>
pub fn set_slot_to_elicit(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.slot_to_elicit = input;
self
}
/// <p>If the <code>dialogState</code> value is <code>ElicitSlot</code>, returns the name of the slot for which Amazon Lex is eliciting a value.</p>
pub fn get_slot_to_elicit(&self) -> &::std::option::Option<::std::string::String> {
&self.slot_to_elicit
}
/// <p>Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function).</p>
pub fn response_card(mut self, input: crate::types::ResponseCard) -> Self {
self.response_card = ::std::option::Option::Some(input);
self
}
/// <p>Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function).</p>
pub fn set_response_card(mut self, input: ::std::option::Option<crate::types::ResponseCard>) -> Self {
self.response_card = input;
self
}
/// <p>Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function).</p>
pub fn get_response_card(&self) -> &::std::option::Option<crate::types::ResponseCard> {
&self.response_card
}
/// <p>A unique identifier for the session.</p>
pub fn session_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.session_id = ::std::option::Option::Some(input.into());
self
}
/// <p>A unique identifier for the session.</p>
pub fn set_session_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.session_id = input;
self
}
/// <p>A unique identifier for the session.</p>
pub fn get_session_id(&self) -> &::std::option::Option<::std::string::String> {
&self.session_id
}
/// <p>The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.</p>
pub fn bot_version(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.bot_version = ::std::option::Option::Some(input.into());
self
}
/// <p>The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.</p>
pub fn set_bot_version(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.bot_version = input;
self
}
/// <p>The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.</p>
pub fn get_bot_version(&self) -> &::std::option::Option<::std::string::String> {
&self.bot_version
}
/// Appends an item to `active_contexts`.
///
/// To override the contents of this collection use [`set_active_contexts`](Self::set_active_contexts).
///
/// <p>A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the <code>PostContent</code>, <code>PostText</code>, or <code>PutSession</code> operation.</p>
/// <p>You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.</p>
pub fn active_contexts(mut self, input: crate::types::ActiveContext) -> Self {
let mut v = self.active_contexts.unwrap_or_default();
v.push(input);
self.active_contexts = ::std::option::Option::Some(v);
self
}
/// <p>A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the <code>PostContent</code>, <code>PostText</code>, or <code>PutSession</code> operation.</p>
/// <p>You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.</p>
pub fn set_active_contexts(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ActiveContext>>) -> Self {
self.active_contexts = input;
self
}
/// <p>A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the <code>PostContent</code>, <code>PostText</code>, or <code>PutSession</code> operation.</p>
/// <p>You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.</p>
pub fn get_active_contexts(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ActiveContext>> {
&self.active_contexts
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
/// Consumes the builder and constructs a [`PostTextOutput`](crate::operation::post_text::PostTextOutput).
pub fn build(self) -> crate::operation::post_text::PostTextOutput {
crate::operation::post_text::PostTextOutput {
intent_name: self.intent_name,
nlu_intent_confidence: self.nlu_intent_confidence,
alternative_intents: self.alternative_intents,
slots: self.slots,
session_attributes: self.session_attributes,
message: self.message,
sentiment_response: self.sentiment_response,
message_format: self.message_format,
dialog_state: self.dialog_state,
slot_to_elicit: self.slot_to_elicit,
response_card: self.response_card,
session_id: self.session_id,
bot_version: self.bot_version,
active_contexts: self.active_contexts,
_request_id: self._request_id,
}
}
}
impl ::std::fmt::Debug for PostTextOutputBuilder {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("PostTextOutputBuilder");
formatter.field("intent_name", &self.intent_name);
formatter.field("nlu_intent_confidence", &self.nlu_intent_confidence);
formatter.field("alternative_intents", &self.alternative_intents);
formatter.field("slots", &"*** Sensitive Data Redacted ***");
formatter.field("session_attributes", &"*** Sensitive Data Redacted ***");
formatter.field("message", &"*** Sensitive Data Redacted ***");
formatter.field("sentiment_response", &self.sentiment_response);
formatter.field("message_format", &self.message_format);
formatter.field("dialog_state", &self.dialog_state);
formatter.field("slot_to_elicit", &self.slot_to_elicit);
formatter.field("response_card", &self.response_card);
formatter.field("session_id", &self.session_id);
formatter.field("bot_version", &self.bot_version);
formatter.field("active_contexts", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}