Module Values.DescribeTestExecutionResponseSource

Gets metadata information about the test execution.

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

    The execution Id for the test set execution.

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

    The execution creation date and time for the test set execution.

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

    The date and time of the last update for the execution.

    *)
  4. testExecutionStatus : TestExecutionStatus.t option;
    (*

    The test execution status for the test execution.

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

    The test set Id for the test set execution.

    *)
  6. testSetName : Name.t option;
    (*

    The test set name of the test set execution.

    *)
  7. target : TestExecutionTarget.t option;
    (*

    The target bot for the test set execution details.

    *)
  8. apiMode : TestExecutionApiMode.t option;
    (*

    Indicates whether we use streaming or non-streaming APIs are used for the test set execution. For streaming, StartConversation Amazon Lex Runtime API is used. Whereas for non-streaming, RecognizeUtterance and RecognizeText Amazon Lex Runtime API is used.

    *)
  9. testExecutionModality : TestExecutionModality.t option;
    (*

    Indicates whether test set is audio or text.

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

    Reasons for the failure of the test set execution.

    *)
}
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 : ?testExecutionId:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?testExecutionStatus:??? -> ?testSetId:??? -> ?testSetName:??? -> ?target:??? -> ?apiMode:??? -> ?testExecutionModality:??? -> ?failureReasons:??? -> 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 | `List of [> `String of FailureReason.t ] list | `String of Id.t | `Structure of (string * [> `Structure of (string * [> `String of Id.t ]) 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