Class: Aws::Personalize::Types::OptimizationObjective
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::OptimizationObjective
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see [Optimizing a solution].
[1]: docs.aws.amazon.com/personalize/latest/dg/optimizing-solution-for-objective.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#item_attribute ⇒ String
The numerical metadata column in an Items dataset related to the optimization objective.
-
#objective_sensitivity ⇒ String
Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.
Instance Attribute Details
#item_attribute ⇒ String
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).
4774 4775 4776 4777 4778 4779 |
# File 'lib/aws-sdk-personalize/types.rb', line 4774 class OptimizationObjective < Struct.new( :item_attribute, :objective_sensitivity) SENSITIVE = [] include Aws::Structure end |
#objective_sensitivity ⇒ String
Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.
4774 4775 4776 4777 4778 4779 |
# File 'lib/aws-sdk-personalize/types.rb', line 4774 class OptimizationObjective < Struct.new( :item_attribute, :objective_sensitivity) SENSITIVE = [] include Aws::Structure end |