Module Values.BotSummarySource

Summary information about a bot returned by the ListBots operation.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. botName : Name.t option;
    (*

    The name of the bot.

    *)
  3. description : Description.t option;
    (*

    The description of the bot.

    *)
  4. botStatus : BotStatus.t option;
    (*

    The current status of the bot. When the status is Available the bot is ready for use.

    *)
  5. latestBotVersion : NumericalBotVersion.t option;
    (*

    The latest numerical version in use for the bot.

    *)
  6. lastUpdatedDateTime : Timestamp.t option;
    (*

    The date and time that the bot was last updated.

    *)
  7. botType : BotType.t option;
    (*

    The type of the bot.

    *)
}
Sourceval make : ?botId:??? -> ?botName:??? -> ?description:??? -> ?botStatus:??? -> ?latestBotVersion:??? -> ?lastUpdatedDateTime:??? -> ?botType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of Timestamp.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