Module Values.ModelImportJobSummarySource

Information about the import job.

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

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

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

    The name of the import job.

    *)
  3. status : ModelImportJobStatus.t option;
    (*

    The status of the imported job.

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

    The time when the import job was last modified.

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

    The time import job was created.

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

    The time when import job ended.

    *)
  7. importedModelArn : ImportedModelArn.t option;
    (*

    The Amazon resource Name (ARN) of the imported model.

    *)
  8. importedModelName : ImportedModelName.t option;
    (*

    The name of the imported model.

    *)
}
Sourceval make : ?jobArn:??? -> ?jobName:??? -> ?status:??? -> ?lastModifiedTime:??? -> ?creationTime:??? -> ?endTime:??? -> ?importedModelArn:??? -> ?importedModelName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ModelImportJobArn.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