Class: Aws::Personalize::Types::AutoMLConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::AutoMLConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
When the solution performs AutoML (‘performAutoML` is true in [CreateSolution]), Amazon Personalize determines which recipe, from the specified list, optimizes the given metric. Amazon Personalize then uses that recipe for the solution.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_CreateSolution.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric_name ⇒ String
The metric to optimize.
-
#recipe_list ⇒ Array<String>
The list of candidate recipes.
Instance Attribute Details
#metric_name ⇒ String
The metric to optimize.
114 115 116 117 118 119 |
# File 'lib/aws-sdk-personalize/types.rb', line 114 class AutoMLConfig < Struct.new( :metric_name, :recipe_list) SENSITIVE = [] include Aws::Structure end |
#recipe_list ⇒ Array<String>
The list of candidate recipes.
114 115 116 117 118 119 |
# File 'lib/aws-sdk-personalize/types.rb', line 114 class AutoMLConfig < Struct.new( :metric_name, :recipe_list) SENSITIVE = [] include Aws::Structure end |