Module Values.DescribeBotRecommendationResponseSource

Provides metadata information about a bot recommendation. This information will enable you to get a description on the request inputs, to download associated transcripts after processing is complete, and to download intents and slot-types generated by the bot recommendation.

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

    The identifier of the bot associated with the bot recommendation.

    *)
  2. botVersion : DraftBotVersion.t option;
    (*

    The version of the bot associated with the bot recommendation.

    *)
  3. localeId : LocaleId.t option;
    (*

    The identifier of the language and locale of the bot recommendation to describe.

    *)
  4. botRecommendationStatus : BotRecommendationStatus.t option;
    (*

    The status of the bot recommendation. If the status is Failed, then the reasons for the failure are listed in the failureReasons field.

    *)
  5. botRecommendationId : Id.t option;
    (*

    The identifier of the bot recommendation being described.

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

    If botRecommendationStatus is Failed, Amazon Lex explains why.

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

    The date and time that the bot recommendation was created.

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

    The date and time that the bot recommendation was last updated.

    *)
  9. transcriptSourceSetting : TranscriptSourceSetting.t option;
    (*

    The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.

    *)
  10. encryptionSetting : EncryptionSetting.t option;
    (*

    The object representing the passwords that were used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.

    *)
  11. botRecommendationResults : BotRecommendationResults.t option;
    (*

    The object representing the URL of the bot definition, the URL of the associated transcript and a statistical summary of the bot recommendation results.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botId:??? -> ?botVersion:??? -> ?localeId:??? -> ?botRecommendationStatus:??? -> ?botRecommendationId:??? -> ?failureReasons:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?transcriptSourceSetting:??? -> ?encryptionSetting:??? -> ?botRecommendationResults:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `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 | `List of [> `String of FailureReason.t ] list | `String of Id.t | `Structure of (string * [> `String of KmsKeyArn.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.t | `Structure of (string * [> `Integer of Count.t | `List of [> `String of ObjectPrefix.t ] list | `Structure of (string * [> `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) list ]) list ]) list ]) 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