Module Values.StartTestExecutionRequestSource

The action to start test set execution.

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

    The test set Id for the test set execution.

    *)
  2. target : TestExecutionTarget.t;
    (*

    The target bot for the test set execution.

    *)
  3. apiMode : TestExecutionApiMode.t;
    (*

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

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

    Indicates whether audio or text is used.

    *)
}
Sourceval context_ : string
Sourceval make : ?testExecutionModality:??? -> testSetId:Id.t -> target:TestExecutionTarget.t -> apiMode:TestExecutionApiMode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Structure of (string * [> `Structure of (string * [> `String of Id.t ]) list ]) list ]) 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