Values.DescribeBotResponseSourceProvides metadata information about a bot.
type nonrec t = {botId : Id.t option;The unique identifier of the bot.
*)botName : Name.t option;The name of the bot.
*)description : Description.t option;The description of the bot.
*)roleArn : RoleArn.t option;The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.
*)dataPrivacy : DataPrivacy.t option;Settings for managing data privacy of the bot and its conversations with users.
*)idleSessionTTLInSeconds : SessionTTL.t option;The maximum time in seconds that Amazon Lex retains the data gathered in a conversation.
*)botStatus : BotStatus.t option;The current status of the bot. When the status is Available the bot is ready to be used in conversations with users.
*)creationDateTime : Timestamp.t option;A timestamp of the date and time that the bot was created.
*)lastUpdatedDateTime : Timestamp.t option;A timestamp of the date and time that the bot was last updated.
*)botType : BotType.t option;The type of the bot that was described.
*)botMembers : BotMembers.t option;The list of bots in the network that was described.
*)failureReasons : FailureReasons.t option;If the botStatus is Failed, this contains a list of reasons that the bot couldn't be built.
*)errorLogSettings : ErrorLogSettings.t option;Contains the configuration for error logging that specifies where and how bot errors are recorded, including destinations like CloudWatch Logs.
*)}type nonrec error = [ | `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.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 ->
[> `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.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 ->
[> `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.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
| `Integer of SessionTTL.t
| `List of
[> `String of FailureReason.t
| `Structure of (string * [> `String of Id.t ]) list ]
list
| `String of Id.t
| `Structure of (string * [> `Boolean of ChildDirected.t ]) list
| `Timestamp of Timestamp.t ])
list ]