Struct aws_sdk_personalize::types::SolutionConfig
source · #[non_exhaustive]pub struct SolutionConfig { /* private fields */ }
Expand description
Describes the configuration properties for the solution.
Implementations§
source§impl SolutionConfig
impl SolutionConfig
sourcepub fn event_value_threshold(&self) -> Option<&str>
pub fn event_value_threshold(&self) -> Option<&str>
Only events with a value greater than or equal to this threshold are used for training a model.
sourcepub fn hpo_config(&self) -> Option<&HpoConfig>
pub fn hpo_config(&self) -> Option<&HpoConfig>
Describes the properties for hyperparameter optimization (HPO).
sourcepub fn algorithm_hyper_parameters(&self) -> Option<&HashMap<String, String>>
pub fn algorithm_hyper_parameters(&self) -> Option<&HashMap<String, String>>
Lists the hyperparameter names and ranges.
sourcepub fn feature_transformation_parameters(
&self
) -> Option<&HashMap<String, String>>
pub fn feature_transformation_parameters( &self ) -> Option<&HashMap<String, String>>
Lists the feature transformation parameters.
sourcepub fn auto_ml_config(&self) -> Option<&AutoMlConfig>
pub fn auto_ml_config(&self) -> Option<&AutoMlConfig>
The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
sourcepub fn optimization_objective(&self) -> Option<&OptimizationObjective>
pub fn optimization_objective(&self) -> Option<&OptimizationObjective>
Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.
source§impl SolutionConfig
impl SolutionConfig
sourcepub fn builder() -> SolutionConfigBuilder
pub fn builder() -> SolutionConfigBuilder
Creates a new builder-style object to manufacture SolutionConfig
.
Trait Implementations§
source§impl Clone for SolutionConfig
impl Clone for SolutionConfig
source§fn clone(&self) -> SolutionConfig
fn clone(&self) -> SolutionConfig
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 SolutionConfig
impl Debug for SolutionConfig
source§impl PartialEq<SolutionConfig> for SolutionConfig
impl PartialEq<SolutionConfig> for SolutionConfig
source§fn eq(&self, other: &SolutionConfig) -> bool
fn eq(&self, other: &SolutionConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.