pub struct GetSessionRequest {
pub bot_alias: String,
pub bot_name: String,
pub checkpoint_label_filter: Option<String>,
pub user_id: String,
}
Fields§
§bot_alias: String
The alias in use for the bot that contains the session data.
bot_name: String
The name of the bot that contains the session data.
checkpoint_label_filter: Option<String>
A string used to filter the intents returned in the recentIntentSummaryView
structure.
When you specify a filter, only intents with their checkpointLabel
field set to that string are returned.
user_id: String
The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot.
Trait Implementations§
Source§impl Clone for GetSessionRequest
impl Clone for GetSessionRequest
Source§fn clone(&self) -> GetSessionRequest
fn clone(&self) -> GetSessionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetSessionRequest
impl Debug for GetSessionRequest
Source§impl Default for GetSessionRequest
impl Default for GetSessionRequest
Source§fn default() -> GetSessionRequest
fn default() -> GetSessionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetSessionRequest
impl PartialEq for GetSessionRequest
Source§impl Serialize for GetSessionRequest
impl Serialize for GetSessionRequest
impl StructuralPartialEq for GetSessionRequest
Auto Trait Implementations§
impl Freeze for GetSessionRequest
impl RefUnwindSafe for GetSessionRequest
impl Send for GetSessionRequest
impl Sync for GetSessionRequest
impl Unpin for GetSessionRequest
impl UnwindSafe for GetSessionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more