Class: Aws::Personalize::Types::AutoMLConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-personalize/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The metric to optimize.

Returns:

  • (String)


114
115
116
117
118
119
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 114

class AutoMLConfig < Struct.new(
  :metric_name,
  :recipe_list)
  SENSITIVE = []
  include Aws::Structure
end

#recipe_listArray<String>

The list of candidate recipes.

Returns:

  • (Array<String>)


114
115
116
117
118
119
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 114

class AutoMLConfig < Struct.new(
  :metric_name,
  :recipe_list)
  SENSITIVE = []
  include Aws::Structure
end