Struct aws_sdk_personalize::types::AutoMlConfig
source · #[non_exhaustive]pub struct AutoMlConfig { /* private fields */ }
Expand description
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.
Implementations§
source§impl AutoMlConfig
impl AutoMlConfig
sourcepub fn metric_name(&self) -> Option<&str>
pub fn metric_name(&self) -> Option<&str>
The metric to optimize.
sourcepub fn recipe_list(&self) -> Option<&[String]>
pub fn recipe_list(&self) -> Option<&[String]>
The list of candidate recipes.
source§impl AutoMlConfig
impl AutoMlConfig
sourcepub fn builder() -> AutoMlConfigBuilder
pub fn builder() -> AutoMlConfigBuilder
Creates a new builder-style object to manufacture AutoMlConfig
.
Trait Implementations§
source§impl Clone for AutoMlConfig
impl Clone for AutoMlConfig
source§fn clone(&self) -> AutoMlConfig
fn clone(&self) -> AutoMlConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AutoMlConfig
impl Debug for AutoMlConfig
source§impl PartialEq<AutoMlConfig> for AutoMlConfig
impl PartialEq<AutoMlConfig> for AutoMlConfig
source§fn eq(&self, other: &AutoMlConfig) -> bool
fn eq(&self, other: &AutoMlConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.