Values.StartBotResourceGenerationResponseSourceStarts a request for the descriptive bot builder to generate a bot locale configuration based on the prompt you provide it. After you make this call, use the DescribeBotResourceGeneration operation to check on the status of the generation and for the generatedBotLocaleUrl when the generation is complete. Use that value to retrieve the Amazon S3 object containing the bot locale configuration. You can then modify and import this configuration.
type nonrec t = {generationInputPrompt : GenerationInput.t option;The prompt that was used generate intents and slot types for the bot locale.
*)generationId : Id.t option;The unique identifier of the generation request.
*)botId : Id.t option;The unique identifier of the bot for which the generation request was made.
*)botVersion : BotVersion.t option;The version of the bot for which the generation request was made.
*)localeId : LocaleId.t option;The locale of the bot for which the generation request was made.
*)generationStatus : GenerationStatus.t option;The status of the generation request.
*)creationDateTime : Timestamp.t option;The date and time at which the generation request was made.
*)}type nonrec error = [ | `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `PreconditionFailedException of PreconditionFailedException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `PreconditionFailedException of PreconditionFailedException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `PreconditionFailedException of PreconditionFailedException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of GenerationInput.t
| `Timestamp of Timestamp.t ])
list ]