Module Values.DescribeBotRecommendationRequestSource

Provides metadata information about a bot recommendation. This information will enable you to get a description on the request inputs, to download associated transcripts after processing is complete, and to download intents and slot-types generated by the bot recommendation.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The unique identifier of the bot associated with the bot recommendation.

    *)
  2. botVersion : DraftBotVersion.t;
    (*

    The version of the bot associated with the bot recommendation.

    *)
  3. localeId : LocaleId.t;
    (*

    The identifier of the language and locale of the bot recommendation to describe. The string must match one of the supported locales. For more information, see Supported languages.

    *)
  4. botRecommendationId : Id.t;
    (*

    The identifier of the bot recommendation to describe.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botVersion:DraftBotVersion.t -> localeId:LocaleId.t -> botRecommendationId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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