Module Values_0.AutoMLCandidateStepSource

Information about the steps for a candidate and what step it is working on.

Sourcetype nonrec t = {
  1. candidateStepType : CandidateStepType.t option;
    (*

    Whether the candidate is at the transform, training, or processing step.

    *)
  2. candidateStepArn : CandidateStepArn.t option;
    (*

    The ARN for the candidate's step.

    *)
  3. candidateStepName : CandidateStepName.t option;
    (*

    The name for the candidate's step.

    *)
}
Sourceval make : ?candidateStepType:??? -> ?candidateStepArn:??? -> ?candidateStepName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CandidateStepArn.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