Module Values.TestSetSummarySource

Contains summary information about the test set.

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

    The unique identifier of the test set.

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

    The name of the test set.

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

    The description of the test set.

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

    Specifies whether the test set contains written or spoken data.

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

    The status of the test set.

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

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

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

    The number of turns in the test set.

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

    Contains information about the location at which the test set is stored.

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

    The date and time at which the test set was created.

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

    The date and time at which the test set was last updated.

    *)
}
Sourceval make : ?testSetId:??? -> ?testSetName:??? -> ?description:??? -> ?modality:??? -> ?status:??? -> ?roleArn:??? -> ?numTurns:??? -> ?storageLocation:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> 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