Values.DatasetPropertiesSourceProperties associated with the dataset.
type nonrec t = {datasetArn : ComprehendDatasetArn.t option;The ARN of the dataset.
*)datasetName : ComprehendArnName.t option;The name of the dataset.
*)datasetType : DatasetType.t option;The dataset type (training data or test data).
*)datasetS3Uri : S3Uri.t option;The S3 URI where the dataset is stored.
*)description : Description.t option;Description of the dataset.
*)status : DatasetStatus.t option;The dataset status. While the system creates the dataset, the status is CREATING. When the dataset is ready to use, the status changes to COMPLETED.
*)message : AnyLengthString.t option;A description of the status of the dataset.
*)numberOfDocuments : NumberOfDocuments.t option;The number of documents in the dataset.
*)creationTime : Timestamp.t option;Creation time of the dataset.
*)endTime : Timestamp.t option;Time when the data from the dataset becomes available in the data lake.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of NumberOfDocuments.t
| `String of ComprehendDatasetArn.t
| `Timestamp of Timestamp.t ])
list ]