// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
pub struct PutSessionOutput {
/// <p>Content type as specified in the <code>Accept</code> HTTP header in the request.</p>
pub content_type: ::std::option::Option<::std::string::String>,
/// <p>The name of the current intent.</p>
pub intent_name: ::std::option::Option<::std::string::String>,
/// <p>Map of zero or more intent slots Amazon Lex detected from the user input during 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::string::String>,
/// <p>Map of key/value pairs representing session-specific context information.</p>
pub session_attributes: ::std::option::Option<::std::string::String>,
/// <p>The next message that should be presented to the user.</p>
/// <p>You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the <code>message</code> field is null. You should use the <code>encodedMessage</code> field instead.</p>
#[deprecated(
note = "The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales."
)]
pub message: ::std::option::Option<::std::string::String>,
/// <p>The next message that should be presented to the user.</p>
/// <p>The <code>encodedMessage</code> field is base-64 encoded. You must decode the field before you can use the value.</p>
pub encoded_message: ::std::option::Option<::std::string::String>,
/// <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 for the client.</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></p>
/// <ul>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response to confirm the intent before fulfilling an intent.</p></li>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit the user's intent.</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting the value of a slot for the current intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function has sucessfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has to fulfill the intent.</p></li>
/// </ul>
pub dialog_state: ::std::option::Option<crate::types::DialogState>,
/// <p>If the <code>dialogState</code> 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>The audio version of the message to convey to the user.</p>
pub audio_stream: ::aws_smithy_types::byte_stream::ByteStream,
/// <p>A unique identifier for the session.</p>
pub session_id: ::std::option::Option<::std::string::String>,
/// <p>A list of active contexts for the session.</p>
pub active_contexts: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl PutSessionOutput {
/// <p>Content type as specified in the <code>Accept</code> HTTP header in the request.</p>
pub fn content_type(&self) -> ::std::option::Option<&str> {
self.content_type.as_deref()
}
/// <p>The name of the current intent.</p>
pub fn intent_name(&self) -> ::std::option::Option<&str> {
self.intent_name.as_deref()
}
/// <p>Map of zero or more intent slots Amazon Lex detected from the user input during 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<&str> {
self.slots.as_deref()
}
/// <p>Map of key/value pairs representing session-specific context information.</p>
pub fn session_attributes(&self) -> ::std::option::Option<&str> {
self.session_attributes.as_deref()
}
/// <p>The next message that should be presented to the user.</p>
/// <p>You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the <code>message</code> field is null. You should use the <code>encodedMessage</code> field instead.</p>
#[deprecated(
note = "The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales."
)]
pub fn message(&self) -> ::std::option::Option<&str> {
self.message.as_deref()
}
/// <p>The next message that should be presented to the user.</p>
/// <p>The <code>encodedMessage</code> field is base-64 encoded. You must decode the field before you can use the value.</p>
pub fn encoded_message(&self) -> ::std::option::Option<&str> {
self.encoded_message.as_deref()
}
/// <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 for the client.</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></p>
/// <ul>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response to confirm the intent before fulfilling an intent.</p></li>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit the user's intent.</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting the value of a slot for the current intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function has sucessfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has 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> 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>The audio version of the message to convey to the user.</p>
pub fn audio_stream(&self) -> &::aws_smithy_types::byte_stream::ByteStream {
&self.audio_stream
}
/// <p>A unique identifier for the session.</p>
pub fn session_id(&self) -> ::std::option::Option<&str> {
self.session_id.as_deref()
}
/// <p>A list of active contexts for the session.</p>
pub fn active_contexts(&self) -> ::std::option::Option<&str> {
self.active_contexts.as_deref()
}
}
impl ::std::fmt::Debug for PutSessionOutput {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("PutSessionOutput");
formatter.field("content_type", &self.content_type);
formatter.field("intent_name", &self.intent_name);
formatter.field("slots", &self.slots);
formatter.field("session_attributes", &self.session_attributes);
formatter.field("message", &"*** Sensitive Data Redacted ***");
formatter.field("encoded_message", &"*** Sensitive Data Redacted ***");
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("audio_stream", &self.audio_stream);
formatter.field("session_id", &self.session_id);
formatter.field("active_contexts", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}
impl ::aws_types::request_id::RequestId for PutSessionOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl PutSessionOutput {
/// Creates a new builder-style object to manufacture [`PutSessionOutput`](crate::operation::put_session::PutSessionOutput).
pub fn builder() -> crate::operation::put_session::builders::PutSessionOutputBuilder {
crate::operation::put_session::builders::PutSessionOutputBuilder::default()
}
}
/// A builder for [`PutSessionOutput`](crate::operation::put_session::PutSessionOutput).
#[derive(::std::default::Default)]
#[non_exhaustive]
pub struct PutSessionOutputBuilder {
pub(crate) content_type: ::std::option::Option<::std::string::String>,
pub(crate) intent_name: ::std::option::Option<::std::string::String>,
pub(crate) slots: ::std::option::Option<::std::string::String>,
pub(crate) session_attributes: ::std::option::Option<::std::string::String>,
pub(crate) message: ::std::option::Option<::std::string::String>,
pub(crate) encoded_message: ::std::option::Option<::std::string::String>,
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) audio_stream: ::std::option::Option<::aws_smithy_types::byte_stream::ByteStream>,
pub(crate) session_id: ::std::option::Option<::std::string::String>,
pub(crate) active_contexts: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl PutSessionOutputBuilder {
/// <p>Content type as specified in the <code>Accept</code> HTTP header in the request.</p>
pub fn content_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.content_type = ::std::option::Option::Some(input.into());
self
}
/// <p>Content type as specified in the <code>Accept</code> HTTP header in the request.</p>
pub fn set_content_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.content_type = input;
self
}
/// <p>Content type as specified in the <code>Accept</code> HTTP header in the request.</p>
pub fn get_content_type(&self) -> &::std::option::Option<::std::string::String> {
&self.content_type
}
/// <p>The name of the current intent.</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 name of the current intent.</p>
pub fn set_intent_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.intent_name = input;
self
}
/// <p>The name of the current intent.</p>
pub fn get_intent_name(&self) -> &::std::option::Option<::std::string::String> {
&self.intent_name
}
/// <p>Map of zero or more intent slots Amazon Lex detected from the user input during 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, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.slots = ::std::option::Option::Some(input.into());
self
}
/// <p>Map of zero or more intent slots Amazon Lex detected from the user input during 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::string::String>) -> Self {
self.slots = input;
self
}
/// <p>Map of zero or more intent slots Amazon Lex detected from the user input during 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::string::String> {
&self.slots
}
/// <p>Map of key/value pairs representing session-specific context information.</p>
pub fn session_attributes(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.session_attributes = ::std::option::Option::Some(input.into());
self
}
/// <p>Map of key/value pairs representing session-specific context information.</p>
pub fn set_session_attributes(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.session_attributes = input;
self
}
/// <p>Map of key/value pairs representing session-specific context information.</p>
pub fn get_session_attributes(&self) -> &::std::option::Option<::std::string::String> {
&self.session_attributes
}
/// <p>The next message that should be presented to the user.</p>
/// <p>You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the <code>message</code> field is null. You should use the <code>encodedMessage</code> field instead.</p>
#[deprecated(
note = "The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales."
)]
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 next message that should be presented to the user.</p>
/// <p>You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the <code>message</code> field is null. You should use the <code>encodedMessage</code> field instead.</p>
#[deprecated(
note = "The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales."
)]
pub fn set_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.message = input;
self
}
/// <p>The next message that should be presented to the user.</p>
/// <p>You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the <code>message</code> field is null. You should use the <code>encodedMessage</code> field instead.</p>
#[deprecated(
note = "The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales."
)]
pub fn get_message(&self) -> &::std::option::Option<::std::string::String> {
&self.message
}
/// <p>The next message that should be presented to the user.</p>
/// <p>The <code>encodedMessage</code> field is base-64 encoded. You must decode the field before you can use the value.</p>
pub fn encoded_message(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.encoded_message = ::std::option::Option::Some(input.into());
self
}
/// <p>The next message that should be presented to the user.</p>
/// <p>The <code>encodedMessage</code> field is base-64 encoded. You must decode the field before you can use the value.</p>
pub fn set_encoded_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.encoded_message = input;
self
}
/// <p>The next message that should be presented to the user.</p>
/// <p>The <code>encodedMessage</code> field is base-64 encoded. You must decode the field before you can use the value.</p>
pub fn get_encoded_message(&self) -> &::std::option::Option<::std::string::String> {
&self.encoded_message
}
/// <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 for the client.</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 for the client.</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 for the client.</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></p>
/// <ul>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response to confirm the intent before fulfilling an intent.</p></li>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit the user's intent.</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting the value of a slot for the current intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function has sucessfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has 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></p>
/// <ul>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response to confirm the intent before fulfilling an intent.</p></li>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit the user's intent.</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting the value of a slot for the current intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function has sucessfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has 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></p>
/// <ul>
/// <li>
/// <p><code>ConfirmIntent</code> - Amazon Lex is expecting a "yes" or "no" response to confirm the intent before fulfilling an intent.</p></li>
/// <li>
/// <p><code>ElicitIntent</code> - Amazon Lex wants to elicit the user's intent.</p></li>
/// <li>
/// <p><code>ElicitSlot</code> - Amazon Lex is expecting the value of a slot for the current intent.</p></li>
/// <li>
/// <p><code>Failed</code> - Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.</p></li>
/// <li>
/// <p><code>Fulfilled</code> - Conveys that the Lambda function has sucessfully fulfilled the intent.</p></li>
/// <li>
/// <p><code>ReadyForFulfillment</code> - Conveys that the client has 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> 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> 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> 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>The audio version of the message to convey to the user.</p>
pub fn audio_stream(mut self, input: ::aws_smithy_types::byte_stream::ByteStream) -> Self {
self.audio_stream = ::std::option::Option::Some(input);
self
}
/// <p>The audio version of the message to convey to the user.</p>
pub fn set_audio_stream(mut self, input: ::std::option::Option<::aws_smithy_types::byte_stream::ByteStream>) -> Self {
self.audio_stream = input;
self
}
/// <p>The audio version of the message to convey to the user.</p>
pub fn get_audio_stream(&self) -> &::std::option::Option<::aws_smithy_types::byte_stream::ByteStream> {
&self.audio_stream
}
/// <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>A list of active contexts for the session.</p>
pub fn active_contexts(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.active_contexts = ::std::option::Option::Some(input.into());
self
}
/// <p>A list of active contexts for the session.</p>
pub fn set_active_contexts(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.active_contexts = input;
self
}
/// <p>A list of active contexts for the session.</p>
pub fn get_active_contexts(&self) -> &::std::option::Option<::std::string::String> {
&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 [`PutSessionOutput`](crate::operation::put_session::PutSessionOutput).
pub fn build(self) -> crate::operation::put_session::PutSessionOutput {
crate::operation::put_session::PutSessionOutput {
content_type: self.content_type,
intent_name: self.intent_name,
slots: self.slots,
session_attributes: self.session_attributes,
message: self.message,
encoded_message: self.encoded_message,
message_format: self.message_format,
dialog_state: self.dialog_state,
slot_to_elicit: self.slot_to_elicit,
audio_stream: self.audio_stream.unwrap_or_default(),
session_id: self.session_id,
active_contexts: self.active_contexts,
_request_id: self._request_id,
}
}
}
impl ::std::fmt::Debug for PutSessionOutputBuilder {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("PutSessionOutputBuilder");
formatter.field("content_type", &self.content_type);
formatter.field("intent_name", &self.intent_name);
formatter.field("slots", &self.slots);
formatter.field("session_attributes", &self.session_attributes);
formatter.field("message", &"*** Sensitive Data Redacted ***");
formatter.field("encoded_message", &"*** Sensitive Data Redacted ***");
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("audio_stream", &self.audio_stream);
formatter.field("session_id", &self.session_id);
formatter.field("active_contexts", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}