Module Values.DocumentClassifierSummarySource

Describes information about a document classifier and its versions.

Sourcetype nonrec t = {
  1. documentClassifierName : ComprehendArnName.t option;
    (*

    The name that you assigned the document classifier.

    *)
  2. numberOfVersions : Integer.t option;
    (*

    The number of versions you created.

    *)
  3. latestVersionCreatedAt : Timestamp.t option;
    (*

    The time that the latest document classifier version was submitted for processing.

    *)
  4. latestVersionName : VersionName.t option;
    (*

    The version name you assigned to the latest document classifier version.

    *)
  5. latestVersionStatus : ModelStatus.t option;
    (*

    Provides the status of the latest document classifier version.

    *)
}
Sourceval make : ?documentClassifierName:??? -> ?numberOfVersions:??? -> ?latestVersionCreatedAt:??? -> ?latestVersionName:??? -> ?latestVersionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of ComprehendArnName.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