Struct aws_sdk_lexruntime::output::GetSessionOutput
source · [−]#[non_exhaustive]pub struct GetSessionOutput {
pub recent_intent_summary_view: Option<Vec<IntentSummary>>,
pub session_attributes: Option<HashMap<String, String>>,
pub session_id: Option<String>,
pub dialog_action: Option<DialogAction>,
pub active_contexts: Option<Vec<ActiveContext>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.recent_intent_summary_view: Option<Vec<IntentSummary>>
An array of information about the intents used in the session. The array can contain a maximum of three summaries. If more than three intents are used in the session, the recentIntentSummaryView
operation contains information about the last three intents used.
If you set the checkpointLabelFilter
parameter in the request, the array contains only the intents with the specified label.
session_attributes: 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.
session_id: Option<String>
A unique identifier for the session.
dialog_action: Option<DialogAction>
Describes the current state of the bot.
active_contexts: Option<Vec<ActiveContext>>
A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent
, PostText
, or PutSession
operation.
You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.
Implementations
An array of information about the intents used in the session. The array can contain a maximum of three summaries. If more than three intents are used in the session, the recentIntentSummaryView
operation contains information about the last three intents used.
If you set the checkpointLabelFilter
parameter in the request, the array contains only the intents with the specified label.
Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.
A unique identifier for the session.
Describes the current state of the bot.
A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent
, PostText
, or PutSession
operation.
You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.
Creates a new builder-style object to manufacture GetSessionOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetSessionOutput
impl Send for GetSessionOutput
impl Sync for GetSessionOutput
impl Unpin for GetSessionOutput
impl UnwindSafe for GetSessionOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more