Module Values_0.AutoMLJobSummarySource

Provides a summary about an AutoML job.

Sourcetype nonrec t = {
  1. autoMLJobName : AutoMLJobName.t option;
    (*

    The name of the AutoML job you are requesting.

    *)
  2. autoMLJobArn : AutoMLJobArn.t option;
    (*

    The ARN of the AutoML job.

    *)
  3. autoMLJobStatus : AutoMLJobStatus.t option;
    (*

    The status of the AutoML job.

    *)
  4. autoMLJobSecondaryStatus : AutoMLJobSecondaryStatus.t option;
    (*

    The secondary status of the AutoML job.

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

    When the AutoML job was created.

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

    The end time of an AutoML job.

    *)
  7. lastModifiedTime : Timestamp.t option;
    (*

    When the AutoML job was last modified.

    *)
  8. failureReason : AutoMLFailureReason.t option;
    (*

    The failure reason of an AutoML job.

    *)
  9. partialFailureReasons : AutoMLPartialFailureReasons.t option;
    (*

    The list of reasons for partial failures within an AutoML job.

    *)
}
Sourceval make : ?autoMLJobName:??? -> ?autoMLJobArn:??? -> ?autoMLJobStatus:??? -> ?autoMLJobSecondaryStatus:??? -> ?creationTime:??? -> ?endTime:??? -> ?lastModifiedTime:??? -> ?failureReason:??? -> ?partialFailureReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AutoMLFailureReason.t ]) list ] list | `String of AutoMLJobName.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