Module Values.DescribeTestSetResponseSource

Gets metadata information about the test set.

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

    The test set Id for the test set response.

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

    The test set name of the test set.

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

    The description of the test set.

    *)
  4. modality : TestSetModality.t option;
    (*

    Indicates whether the test set is audio or text data.

    *)
  5. status : TestSetStatus.t option;
    (*

    The status of the test set.

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

    The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.

    *)
  7. numTurns : Count.t option;
    (*

    The total number of agent and user turn in the test set.

    *)
  8. storageLocation : TestSetStorageLocation.t option;
    (*

    The Amazon S3 storage location for the test set data.

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

    The creation date and time for the test set data.

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

    The date and time for the last update of the test set data.

    *)
}
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 : ?testSetId:??? -> ?testSetName:??? -> ?description:??? -> ?modality:??? -> ?status:??? -> ?roleArn:??? -> ?numTurns:??? -> ?storageLocation:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> 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 Count.t | `String of Id.t | `Structure of (string * [> `String of S3BucketName.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