Module Values_0.AIRecommendationJobSummarySource

Summary information about an AI recommendation job.

Sourcetype nonrec t = {
  1. aIRecommendationJobName : AIEntityName.t option;
    (*

    The name of the recommendation job.

    *)
  2. aIRecommendationJobArn : AIRecommendationJobArn.t option;
    (*

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

    *)
  3. aIRecommendationJobStatus : AIRecommendationJobStatus.t option;
    (*

    The status of the recommendation job.

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

    A timestamp that indicates when the recommendation job was created.

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

    A timestamp that indicates when the recommendation job completed.

    *)
}
Sourceval make : ?aIRecommendationJobName:??? -> ?aIRecommendationJobArn:??? -> ?aIRecommendationJobStatus:??? -> ?creationTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AIEntityName.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