Module Values.BotAliasMetadataSource

Provides information about a bot alias.

Sourcetype nonrec t = {
  1. name : AliasName.t option;
    (*

    The name of the bot alias.

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

    A description of the bot alias.

    *)
  3. botVersion : Version.t option;
    (*

    The version of the Amazon Lex bot to which the alias points.

    *)
  4. botName : BotName.t option;
    (*

    The name of the bot to which the alias points.

    *)
  5. lastUpdatedDate : Timestamp.t option;
    (*

    The date that the bot alias was updated. When you create a resource, the creation date and last updated date are the same.

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

    The date that the bot alias was created.

    *)
  7. checksum : String_.t option;
    (*

    Checksum of the bot alias.

    *)
  8. conversationLogs : ConversationLogsResponse.t option;
    (*

    Settings that determine how Amazon Lex uses conversation logs for the alias.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?botVersion:??? -> ?botName:??? -> ?lastUpdatedDate:??? -> ?createdDate:??? -> ?checksum:??? -> ?conversationLogs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AliasName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of KmsKeyArn.t ]) list ] list | `String of IamRoleArn.t ]) list | `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