Module Values.OptimizationObjectiveSource

Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.

Sourcetype nonrec t = {
  1. itemAttribute : ItemAttribute.t option;
    (*

    The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).

    *)
  2. objectiveSensitivity : ObjectiveSensitivity.t option;
    (*

    Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.

    *)
}
Sourceval make : ?itemAttribute:??? -> ?objectiveSensitivity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ItemAttribute.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