Class: Aws::Lex::Types::GetSessionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lex::Types::GetSessionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lex/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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 ⇒ String
A string used to filter the intents returned in the ‘recentIntentSummaryView` structure.
-
#user_id ⇒ String
The ID of the client application user.
Instance Attribute Details
#bot_alias ⇒ String
The alias in use for the bot that contains the session data.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-lex/types.rb', line 349 class GetSessionRequest < Struct.new( :bot_name, :bot_alias, :user_id, :checkpoint_label_filter) SENSITIVE = [] include Aws::Structure end |
#bot_name ⇒ String
The name of the bot that contains the session data.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-lex/types.rb', line 349 class GetSessionRequest < Struct.new( :bot_name, :bot_alias, :user_id, :checkpoint_label_filter) SENSITIVE = [] include Aws::Structure end |
#checkpoint_label_filter ⇒ 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.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-lex/types.rb', line 349 class GetSessionRequest < Struct.new( :bot_name, :bot_alias, :user_id, :checkpoint_label_filter) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the client application user. Amazon Lex uses this to identify a user’s conversation with your bot.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-lex/types.rb', line 349 class GetSessionRequest < Struct.new( :bot_name, :bot_alias, :user_id, :checkpoint_label_filter) SENSITIVE = [] include Aws::Structure end |