Class: Aws::LexModelsV2::Types::ListSessionAnalyticsDataResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelsv2/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bot_idString

The unique identifier of the bot that the sessions belong to.

Returns:

  • (String)


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_tokenString

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.

Returns:

  • (String)


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

#sessionsArray<Types::SessionSpecification>

A list of objects, each of which contains information about a session with the bot.

Returns:



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