Values.BotAliasSummarySourceSummary information about bot aliases returned from the ListBotAliases operation.
type nonrec t = {botAliasId : BotAliasId.t option;The unique identifier assigned to the bot alias. You can use this ID to get detailed information about the alias using the DescribeBotAlias operation.
*)botAliasName : Name.t option;The name of the bot alias.
*)description : Description.t option;The description of the bot alias.
*)botVersion : BotVersion.t option;The version of the bot that the bot alias references.
*)botAliasStatus : BotAliasStatus.t option;The current state of the bot alias. If the status is Available, the alias is ready for use.
*)creationDateTime : Timestamp.t option;A timestamp of the date and time that the bot alias was created.
*)lastUpdatedDateTime : Timestamp.t option;A timestamp of the date and time that the bot alias was last updated.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of BotAliasId.t
| `Timestamp of Timestamp.t ])
list ]