Values.BotSummarySourceSummary information about a bot returned by the ListBots operation.
type nonrec t = {botId : Id.t option;The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.
*)botName : Name.t option;The name of the bot.
*)description : Description.t option;The description of the bot.
*)botStatus : BotStatus.t option;The current status of the bot. When the status is Available the bot is ready for use.
*)latestBotVersion : NumericalBotVersion.t option;The latest numerical version in use for the bot.
*)lastUpdatedDateTime : Timestamp.t option;The date and time that the bot was last updated.
*)botType : BotType.t option;The type of the bot.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `String of Id.t | `Timestamp of Timestamp.t ])
list ]