Module Values.DescribeBotResponseSource

Provides metadata information about a bot.

Sourcetype nonrec t = {
  1. botId : Id.t option;
    (*

    The unique identifier of the bot.

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

    The name of the bot.

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

    The description of the bot.

    *)
  4. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.

    *)
  5. dataPrivacy : DataPrivacy.t option;
    (*

    Settings for managing data privacy of the bot and its conversations with users.

    *)
  6. idleSessionTTLInSeconds : SessionTTL.t option;
    (*

    The maximum time in seconds that Amazon Lex retains the data gathered in a conversation.

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

    The current status of the bot. When the status is Available the bot is ready to be used in conversations with users.

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

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

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

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

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

    The type of the bot that was described.

    *)
  11. botMembers : BotMembers.t option;
    (*

    The list of bots in the network that was described.

    *)
  12. failureReasons : FailureReasons.t option;
    (*

    If the botStatus is Failed, this contains a list of reasons that the bot couldn't be built.

    *)
  13. errorLogSettings : ErrorLogSettings.t option;
    (*

    Contains the configuration for error logging that specifies where and how bot errors are recorded, including destinations like CloudWatch Logs.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botId:??? -> ?botName:??? -> ?description:??? -> ?roleArn:??? -> ?dataPrivacy:??? -> ?idleSessionTTLInSeconds:??? -> ?botStatus:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?botType:??? -> ?botMembers:??? -> ?failureReasons:??? -> ?errorLogSettings:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of SessionTTL.t | `List of [> `String of FailureReason.t | `Structure of (string * [> `String of Id.t ]) list ] list | `String of Id.t | `Structure of (string * [> `Boolean of ChildDirected.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