Module Values.BotAliasSummarySource

Summary information about bot aliases returned from the ListBotAliases operation.

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

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

    The name of the bot alias.

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

    The description of the bot alias.

    *)
  4. botVersion : BotVersion.t option;
    (*

    The version of the bot that the bot alias references.

    *)
  5. botAliasStatus : BotAliasStatus.t option;
    (*

    The current state of the bot alias. If the status is Available, the alias is ready for use.

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

    A timestamp of the date and time that the bot alias was created.

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

    A timestamp of the date and time that the bot alias was last updated.

    *)
}
Sourceval make : ?botAliasId:??? -> ?botAliasName:??? -> ?description:??? -> ?botVersion:??? -> ?botAliasStatus:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BotAliasId.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