Module Values_1.GetDataQualityModelResponseSource

Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).

Sourcetype nonrec t = {
  1. status : DataQualityModelStatus.t option;
    (*

    The training status of the data quality model.

    *)
  2. startedOn : Values_0.Timestamp.t option;
    (*

    The timestamp when the data quality model training started.

    *)
  3. completedOn : Values_0.Timestamp.t option;
    (*

    The timestamp when the data quality model training completed.

    *)
  4. failureReason : Values_0.HashString.t option;
    (*

    The training failure reason.

    *)
}
Sourcetype nonrec error = [
  1. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  2. | `InternalServiceException of Values_0.InternalServiceException.t
  3. | `InvalidInputException of Values_0.InvalidInputException.t
  4. | `OperationTimeoutException of Values_0.OperationTimeoutException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?startedOn:??? -> ?completedOn:??? -> ?failureReason:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.HashString.t | `Timestamp of Values_0.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