Struct aws_sdk_personalize::model::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>,
}
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 hyperparameter names and ranges.
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.
Implementations
sourceimpl 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.
sourceimpl SolutionConfig
impl SolutionConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SolutionConfig
Trait Implementations
sourceimpl Clone for SolutionConfig
impl Clone for SolutionConfig
sourcefn clone(&self) -> SolutionConfig
fn clone(&self) -> SolutionConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SolutionConfig
impl Debug for SolutionConfig
sourceimpl PartialEq<SolutionConfig> for SolutionConfig
impl PartialEq<SolutionConfig> for SolutionConfig
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &SolutionConfig) -> bool
fn ne(&self, other: &SolutionConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for SolutionConfig
Auto Trait Implementations
impl RefUnwindSafe for SolutionConfig
impl Send for SolutionConfig
impl Sync for SolutionConfig
impl Unpin for SolutionConfig
impl UnwindSafe for SolutionConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more