#[non_exhaustive]pub struct PutSessionInputBuilder { /* private fields */ }
Expand description
A builder for PutSessionInput
.
Implementations§
source§impl PutSessionInputBuilder
impl PutSessionInputBuilder
sourcepub fn bot_name(self, input: impl Into<String>) -> Self
pub fn bot_name(self, input: impl Into<String>) -> Self
The name of the bot that contains the session data.
This field is required.sourcepub fn set_bot_name(self, input: Option<String>) -> Self
pub fn set_bot_name(self, input: Option<String>) -> Self
The name of the bot that contains the session data.
sourcepub fn get_bot_name(&self) -> &Option<String>
pub fn get_bot_name(&self) -> &Option<String>
The name of the bot that contains the session data.
sourcepub fn bot_alias(self, input: impl Into<String>) -> Self
pub fn bot_alias(self, input: impl Into<String>) -> Self
The alias in use for the bot that contains the session data.
This field is required.sourcepub fn set_bot_alias(self, input: Option<String>) -> Self
pub fn set_bot_alias(self, input: Option<String>) -> Self
The alias in use for the bot that contains the session data.
sourcepub fn get_bot_alias(&self) -> &Option<String>
pub fn get_bot_alias(&self) -> &Option<String>
The alias in use for the bot that contains the session data.
sourcepub fn user_id(self, input: impl Into<String>) -> Self
pub fn user_id(self, input: impl Into<String>) -> Self
The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot.
This field is required.sourcepub fn set_user_id(self, input: Option<String>) -> Self
pub fn set_user_id(self, input: Option<String>) -> Self
The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot.
sourcepub fn get_user_id(&self) -> &Option<String>
pub fn get_user_id(&self) -> &Option<String>
The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot.
sourcepub fn session_attributes(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn session_attributes( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to session_attributes
.
To override the contents of this collection use set_session_attributes
.
Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.
sourcepub fn set_session_attributes(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_session_attributes( self, input: Option<HashMap<String, String>> ) -> Self
Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.
sourcepub fn get_session_attributes(&self) -> &Option<HashMap<String, String>>
pub fn get_session_attributes(&self) -> &Option<HashMap<String, String>>
Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.
sourcepub fn dialog_action(self, input: DialogAction) -> Self
pub fn dialog_action(self, input: DialogAction) -> Self
Sets the next action that the bot should take to fulfill the conversation.
sourcepub fn set_dialog_action(self, input: Option<DialogAction>) -> Self
pub fn set_dialog_action(self, input: Option<DialogAction>) -> Self
Sets the next action that the bot should take to fulfill the conversation.
sourcepub fn get_dialog_action(&self) -> &Option<DialogAction>
pub fn get_dialog_action(&self) -> &Option<DialogAction>
Sets the next action that the bot should take to fulfill the conversation.
sourcepub fn recent_intent_summary_view(self, input: IntentSummary) -> Self
pub fn recent_intent_summary_view(self, input: IntentSummary) -> Self
Appends an item to recent_intent_summary_view
.
To override the contents of this collection use set_recent_intent_summary_view
.
A summary of the recent intents for the bot. You can use the intent summary view to set a checkpoint label on an intent and modify attributes of intents. You can also use it to remove or add intent summary objects to the list.
An intent that you modify or add to the list must make sense for the bot. For example, the intent name must be valid for the bot. You must provide valid values for:
-
intentName
-
slot names
-
slotToElict
If you send the recentIntentSummaryView
parameter in a PutSession
request, the contents of the new summary view replaces the old summary view. For example, if a GetSession
request returns three intents in the summary view and you call PutSession
with one intent in the summary view, the next call to GetSession
will only return one intent.
sourcepub fn set_recent_intent_summary_view(
self,
input: Option<Vec<IntentSummary>>
) -> Self
pub fn set_recent_intent_summary_view( self, input: Option<Vec<IntentSummary>> ) -> Self
A summary of the recent intents for the bot. You can use the intent summary view to set a checkpoint label on an intent and modify attributes of intents. You can also use it to remove or add intent summary objects to the list.
An intent that you modify or add to the list must make sense for the bot. For example, the intent name must be valid for the bot. You must provide valid values for:
-
intentName
-
slot names
-
slotToElict
If you send the recentIntentSummaryView
parameter in a PutSession
request, the contents of the new summary view replaces the old summary view. For example, if a GetSession
request returns three intents in the summary view and you call PutSession
with one intent in the summary view, the next call to GetSession
will only return one intent.
sourcepub fn get_recent_intent_summary_view(&self) -> &Option<Vec<IntentSummary>>
pub fn get_recent_intent_summary_view(&self) -> &Option<Vec<IntentSummary>>
A summary of the recent intents for the bot. You can use the intent summary view to set a checkpoint label on an intent and modify attributes of intents. You can also use it to remove or add intent summary objects to the list.
An intent that you modify or add to the list must make sense for the bot. For example, the intent name must be valid for the bot. You must provide valid values for:
-
intentName
-
slot names
-
slotToElict
If you send the recentIntentSummaryView
parameter in a PutSession
request, the contents of the new summary view replaces the old summary view. For example, if a GetSession
request returns three intents in the summary view and you call PutSession
with one intent in the summary view, the next call to GetSession
will only return one intent.
sourcepub fn accept(self, input: impl Into<String>) -> Self
pub fn accept(self, input: impl Into<String>) -> Self
The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.
-
If the value is
text/plain; charset=utf-8
, Amazon Lex returns text in the response. -
If the value begins with
audio/
, Amazon Lex returns speech in the response. Amazon Lex uses Amazon Polly to generate the speech in the configuration that you specify. For example, if you specifyaudio/mpeg
as the value, Amazon Lex returns speech in the MPEG format. -
If the value is
audio/pcm
, the speech is returned asaudio/pcm
in 16-bit, little endian format. -
The following are the accepted values:
-
audio/mpeg
-
audio/ogg
-
audio/pcm
-
audio/*
(defaults to mpeg) -
text/plain; charset=utf-8
-
sourcepub fn set_accept(self, input: Option<String>) -> Self
pub fn set_accept(self, input: Option<String>) -> Self
The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.
-
If the value is
text/plain; charset=utf-8
, Amazon Lex returns text in the response. -
If the value begins with
audio/
, Amazon Lex returns speech in the response. Amazon Lex uses Amazon Polly to generate the speech in the configuration that you specify. For example, if you specifyaudio/mpeg
as the value, Amazon Lex returns speech in the MPEG format. -
If the value is
audio/pcm
, the speech is returned asaudio/pcm
in 16-bit, little endian format. -
The following are the accepted values:
-
audio/mpeg
-
audio/ogg
-
audio/pcm
-
audio/*
(defaults to mpeg) -
text/plain; charset=utf-8
-
sourcepub fn get_accept(&self) -> &Option<String>
pub fn get_accept(&self) -> &Option<String>
The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.
-
If the value is
text/plain; charset=utf-8
, Amazon Lex returns text in the response. -
If the value begins with
audio/
, Amazon Lex returns speech in the response. Amazon Lex uses Amazon Polly to generate the speech in the configuration that you specify. For example, if you specifyaudio/mpeg
as the value, Amazon Lex returns speech in the MPEG format. -
If the value is
audio/pcm
, the speech is returned asaudio/pcm
in 16-bit, little endian format. -
The following are the accepted values:
-
audio/mpeg
-
audio/ogg
-
audio/pcm
-
audio/*
(defaults to mpeg) -
text/plain; charset=utf-8
-
sourcepub fn active_contexts(self, input: ActiveContext) -> Self
pub fn active_contexts(self, input: ActiveContext) -> Self
Appends an item to active_contexts
.
To override the contents of this collection use set_active_contexts
.
A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,
If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.
sourcepub fn set_active_contexts(self, input: Option<Vec<ActiveContext>>) -> Self
pub fn set_active_contexts(self, input: Option<Vec<ActiveContext>>) -> Self
A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,
If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.
sourcepub fn get_active_contexts(&self) -> &Option<Vec<ActiveContext>>
pub fn get_active_contexts(&self) -> &Option<Vec<ActiveContext>>
A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,
If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.
sourcepub fn build(self) -> Result<PutSessionInput, BuildError>
pub fn build(self) -> Result<PutSessionInput, BuildError>
Consumes the builder and constructs a PutSessionInput
.
source§impl PutSessionInputBuilder
impl PutSessionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<PutSessionOutput, SdkError<PutSessionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<PutSessionOutput, SdkError<PutSessionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutSessionInputBuilder
impl Clone for PutSessionInputBuilder
source§fn clone(&self) -> PutSessionInputBuilder
fn clone(&self) -> PutSessionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutSessionInputBuilder
impl Debug for PutSessionInputBuilder
source§impl Default for PutSessionInputBuilder
impl Default for PutSessionInputBuilder
source§fn default() -> PutSessionInputBuilder
fn default() -> PutSessionInputBuilder
source§impl PartialEq for PutSessionInputBuilder
impl PartialEq for PutSessionInputBuilder
source§fn eq(&self, other: &PutSessionInputBuilder) -> bool
fn eq(&self, other: &PutSessionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.