Module Values.DatasetPropertiesSource

Properties associated with the dataset.

Sourcetype nonrec t = {
  1. datasetArn : ComprehendDatasetArn.t option;
    (*

    The ARN of the dataset.

    *)
  2. datasetName : ComprehendArnName.t option;
    (*

    The name of the dataset.

    *)
  3. datasetType : DatasetType.t option;
    (*

    The dataset type (training data or test data).

    *)
  4. datasetS3Uri : S3Uri.t option;
    (*

    The S3 URI where the dataset is stored.

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

    Description of the dataset.

    *)
  6. 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.

    *)
  7. message : AnyLengthString.t option;
    (*

    A description of the status of the dataset.

    *)
  8. numberOfDocuments : NumberOfDocuments.t option;
    (*

    The number of documents in the dataset.

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

    Creation time of the dataset.

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

    Time when the data from the dataset becomes available in the data lake.

    *)
}
Sourceval make : ?datasetArn:??? -> ?datasetName:??? -> ?datasetType:??? -> ?datasetS3Uri:??? -> ?description:??? -> ?status:??? -> ?message:??? -> ?numberOfDocuments:??? -> ?creationTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of NumberOfDocuments.t | `String of ComprehendDatasetArn.t | `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