Module Values_2.InferenceRecommendationsJobSource

A structure that contains a list of recommendation jobs.

Sourcetype nonrec t = {
  1. jobName : Values_1.RecommendationJobName.t option;
    (*

    The name of the job.

    *)
  2. jobDescription : Values_1.RecommendationJobDescription.t option;
    (*

    The job description.

    *)
  3. jobType : Values_1.RecommendationJobType.t option;
    (*

    The recommendation job type.

    *)
  4. jobArn : Values_1.RecommendationJobArn.t option;
    (*

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

    *)
  5. status : Values_1.RecommendationJobStatus.t option;
    (*

    The status of the job.

    *)
  6. creationTime : Values_0.CreationTime.t option;
    (*

    A timestamp that shows when the job was created.

    *)
  7. completionTime : Values_0.Timestamp.t option;
    (*

    A timestamp that shows when the job completed.

    *)
  8. roleArn : Values_0.RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

    *)
  9. lastModifiedTime : Values_0.LastModifiedTime.t option;
    (*

    A timestamp that shows when the job was last modified.

    *)
  10. failureReason : Values_0.FailureReason.t option;
    (*

    If the job fails, provides information why the job failed.

    *)
  11. modelName : Values_0.ModelName.t option;
    (*

    The name of the created model.

    *)
  12. samplePayloadUrl : Values_0.S3Uri.t option;
    (*

    The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).

    *)
  13. modelPackageVersionArn : Values_0.ModelPackageArn.t option;
    (*

    The Amazon Resource Name (ARN) of a versioned model package.

    *)
}
Sourceval make : ?jobName:??? -> ?jobDescription:??? -> ?jobType:??? -> ?jobArn:??? -> ?status:??? -> ?creationTime:??? -> ?completionTime:??? -> ?roleArn:??? -> ?lastModifiedTime:??? -> ?failureReason:??? -> ?modelName:??? -> ?samplePayloadUrl:??? -> ?modelPackageVersionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.RecommendationJobName.t | `Timestamp of Values_0.CreationTime.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