Class: Aws::LexModelsV2::Types::ListSessionAnalyticsDataResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ListSessionAnalyticsDataResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_id ⇒ String
The unique identifier of the bot that the sessions belong to.
-
#next_token ⇒ String
If the response from the ListSessionAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.
-
#sessions ⇒ Array<Types::SessionSpecification>
A list of objects, each of which contains information about a session with the bot.
Instance Attribute Details
#bot_id ⇒ String
The unique identifier of the bot that the sessions belong to.
10299 10300 10301 10302 10303 10304 10305 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 10299 class ListSessionAnalyticsDataResponse < Struct.new( :bot_id, :next_token, :sessions) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response from the ListSessionAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.
Use the returned token in the nextToken parameter of a ListSessionAnalyticsData request to return the next page of results. For a complete set of results, call the ListSessionAnalyticsData operation until the nextToken returned in the response is null.
10299 10300 10301 10302 10303 10304 10305 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 10299 class ListSessionAnalyticsDataResponse < Struct.new( :bot_id, :next_token, :sessions) SENSITIVE = [] include Aws::Structure end |
#sessions ⇒ Array<Types::SessionSpecification>
A list of objects, each of which contains information about a session with the bot.
10299 10300 10301 10302 10303 10304 10305 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 10299 class ListSessionAnalyticsDataResponse < Struct.new( :bot_id, :next_token, :sessions) SENSITIVE = [] include Aws::Structure end |