Module Values.GetSessionRequestSource

Returns session information for a specified bot, alias, and user ID.

Sourcetype nonrec t = {
  1. botName : BotName.t;
    (*

    The name of the bot that contains the session data.

    *)
  2. botAlias : BotAlias.t;
    (*

    The alias in use for the bot that contains the session data.

    *)
  3. userId : UserId.t;
    (*

    The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot.

    *)
  4. checkpointLabelFilter : IntentSummaryCheckpointLabel.t option;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?checkpointLabelFilter:??? -> botName:BotName.t -> botAlias:BotAlias.t -> userId:UserId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BotName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t