Module Values_2.TrainingJobSummarySource

Provides summary information about a training job.

Sourcetype nonrec t = {
  1. trainingJobName : Values_1.TrainingJobName.t option;
    (*

    The name of the training job that you want a summary for.

    *)
  2. trainingJobArn : Values_1.TrainingJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the training job.

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

    A timestamp that shows when the training job was created.

    *)
  4. trainingEndTime : Values_0.Timestamp.t option;
    (*

    A timestamp that shows when the training job ended. This field is set only if the training job has one of the terminal statuses (Completed, Failed, or Stopped).

    *)
  5. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    Timestamp when the training job was last modified.

    *)
  6. trainingJobStatus : Values_1.TrainingJobStatus.t option;
    (*

    The status of the training job.

    *)
  7. secondaryStatus : Values_1.SecondaryStatus.t option;
    (*

    The secondary status of the training job.

    *)
  8. warmPoolStatus : Values_1.WarmPoolStatus.t option;
    (*

    The status of the warm pool associated with the training job.

    *)
  9. trainingPlanArn : Values_0.TrainingPlanArn.t option;
    (*

    The Amazon Resource Name (ARN); of the training plan associated with this training job. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan .

    *)
}
Sourceval make : ?trainingJobName:??? -> ?trainingJobArn:??? -> ?creationTime:??? -> ?trainingEndTime:??? -> ?lastModifiedTime:??? -> ?trainingJobStatus:??? -> ?secondaryStatus:??? -> ?warmPoolStatus:??? -> ?trainingPlanArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.TrainingJobName.t | `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list | `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