Struct aws_sdk_personalize::types::SolutionConfig  
source · #[non_exhaustive]pub struct SolutionConfig {
    pub event_value_threshold: Option<String>,
    pub hpo_config: Option<HpoConfig>,
    pub algorithm_hyper_parameters: Option<HashMap<String, String>>,
    pub feature_transformation_parameters: Option<HashMap<String, String>>,
    pub auto_ml_config: Option<AutoMlConfig>,
    pub optimization_objective: Option<OptimizationObjective>,
    pub training_data_config: Option<TrainingDataConfig>,
    pub auto_training_config: Option<AutoTrainingConfig>,
}Expand description
Describes the configuration properties for the solution.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.event_value_threshold: Option<String>Only events with a value greater than or equal to this threshold are used for training a model.
hpo_config: Option<HpoConfig>Describes the properties for hyperparameter optimization (HPO).
algorithm_hyper_parameters: Option<HashMap<String, String>>Lists the algorithm hyperparameters and their values.
feature_transformation_parameters: Option<HashMap<String, String>>Lists the feature transformation parameters.
auto_ml_config: Option<AutoMlConfig>The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
optimization_objective: Option<OptimizationObjective>Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.
training_data_config: Option<TrainingDataConfig>Specifies the training data configuration to use when creating a custom solution version (trained model).
auto_training_config: Option<AutoTrainingConfig>Specifies the automatic training configuration to use.
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 algorithm hyperparameters and their values.
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.
sourcepub fn training_data_config(&self) -> Option<&TrainingDataConfig>
 
pub fn training_data_config(&self) -> Option<&TrainingDataConfig>
Specifies the training data configuration to use when creating a custom solution version (trained model).
sourcepub fn auto_training_config(&self) -> Option<&AutoTrainingConfig>
 
pub fn auto_training_config(&self) -> Option<&AutoTrainingConfig>
Specifies the automatic training configuration to use.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SolutionConfig
 
impl Debug for SolutionConfig
source§impl PartialEq for SolutionConfig
 
impl PartialEq for SolutionConfig
source§fn eq(&self, other: &SolutionConfig) -> bool
 
fn eq(&self, other: &SolutionConfig) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SolutionConfig
Auto Trait Implementations§
impl Freeze for SolutionConfig
impl RefUnwindSafe for SolutionConfig
impl Send for SolutionConfig
impl Sync for SolutionConfig
impl Unpin for SolutionConfig
impl UnwindSafe for SolutionConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more