Module Values.ModelCustomizationJobSummarySource

Information about one customization job

Sourcetype nonrec t = {
  1. jobArn : ModelCustomizationJobArn.t option;
    (*

    Amazon Resource Name (ARN) of the customization job.

    *)
  2. baseModelArn : ModelArn.t option;
    (*

    Amazon Resource Name (ARN) of the base model.

    *)
  3. jobName : JobName.t option;
    (*

    Name of the customization job.

    *)
  4. status : ModelCustomizationJobStatus.t option;
    (*

    Status of the customization job.

    *)
  5. statusDetails : StatusDetails.t option;
    (*

    Details about the status of the data processing sub-task of the job.

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

    Time that the customization job was last modified.

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

    Creation time of the custom model.

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

    Time that the customization job ended.

    *)
  9. customModelArn : CustomModelArn.t option;
    (*

    Amazon Resource Name (ARN) of the custom model.

    *)
  10. customModelName : CustomModelName.t option;
    (*

    Name of the custom model.

    *)
  11. customizationType : CustomizationType.t option;
    (*

    Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more information, see Custom models.

    *)
}
Sourceval make : ?jobArn:??? -> ?baseModelArn:??? -> ?jobName:??? -> ?status:??? -> ?statusDetails:??? -> ?lastModifiedTime:??? -> ?creationTime:??? -> ?endTime:??? -> ?customModelArn:??? -> ?customModelName:??? -> ?customizationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ModelCustomizationJobArn.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list ]) list | `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