Module Values.GetMLModelTrainingJobOutputSource

Retrieves information about a Neptune ML model training job. See Model training using the modeltraining command. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetMLModelTrainingJobStatus IAM action in that cluster.

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

    The status of the model training job.

    *)
  2. id : String_.t option;
    (*

    The unique identifier of this model-training job.

    *)
  3. processingJob : MlResourceDefinition.t option;
    (*

    The data processing job.

    *)
  4. hpoJob : MlResourceDefinition.t option;
    (*

    The HPO job.

    *)
  5. modelTransformJob : MlResourceDefinition.t option;
    (*

    The model transform job.

    *)
  6. mlModels : MlModels.t option;
    (*

    A list of the configurations of the ML models being used.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ClientTimeoutException of ClientTimeoutException.t
  3. | `ConstraintViolationException of ConstraintViolationException.t
  4. | `IllegalArgumentException of IllegalArgumentException.t
  5. | `InvalidArgumentException of InvalidArgumentException.t
  6. | `InvalidParameterException of InvalidParameterException.t
  7. | `MLResourceNotFoundException of MLResourceNotFoundException.t
  8. | `MissingParameterException of MissingParameterException.t
  9. | `PreconditionsFailedException of PreconditionsFailedException.t
  10. | `TooManyRequestsException of TooManyRequestsException.t
  11. | `UnsupportedOperationException of UnsupportedOperationException.t
  12. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?id:??? -> ?processingJob:??? -> ?hpoJob:??? -> ?modelTransformJob:??? -> ?mlModels:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MLResourceNotFoundException of MLResourceNotFoundException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MLResourceNotFoundException of MLResourceNotFoundException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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