Module Values.DescribeBotResourceGenerationRequestSource

Returns information about a request to generate a bot through natural language description, made through the StartBotResource API. Use the generatedBotLocaleUrl to retrieve the Amazon S3 object containing the bot locale configuration. You can then modify and import this configuration.

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

    The unique identifier of the bot for which to return the generation details.

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

    The version of the bot for which to return the generation details.

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

    The locale of the bot for which to return the generation details.

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

    The unique identifier of the generation request for which to return the generation details.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botVersion:BotVersion.t -> localeId:LocaleId.t -> generationId: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