Module Values_0.AIRecommendationOutputResultSource

The output configuration for an AI recommendation job, including the S3 location for results and the model package group for deployment.

Sourcetype nonrec t = {
  1. s3OutputLocation : S3Uri.t option;
    (*

    The Amazon S3 URI where the recommendation job writes its output results.

    *)
  2. modelPackageGroupIdentifier : AIResourceIdentifier.t option;
    (*

    The name or Amazon Resource Name (ARN) of the model package group where deployment-ready model packages are registered.

    *)
}
Sourceval make : ?s3OutputLocation:??? -> ?modelPackageGroupIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Uri.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