Struct aws_sdk_personalize::model::RecommenderConfig
source · #[non_exhaustive]pub struct RecommenderConfig { /* private fields */ }
Expand description
The configuration details of the recommender.
Implementations§
source§impl RecommenderConfig
impl RecommenderConfig
sourcepub fn item_exploration_config(&self) -> Option<&HashMap<String, String>>
pub fn item_exploration_config(&self) -> Option<&HashMap<String, String>>
Specifies the exploration configuration hyperparameters, including explorationWeight
and explorationItemAgeCutOff
, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig
data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).
sourcepub fn min_recommendation_requests_per_second(&self) -> Option<i32>
pub fn min_recommendation_requests_per_second(&self) -> Option<i32>
Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support.
source§impl RecommenderConfig
impl RecommenderConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommenderConfig
.
Trait Implementations§
source§impl Clone for RecommenderConfig
impl Clone for RecommenderConfig
source§fn clone(&self) -> RecommenderConfig
fn clone(&self) -> RecommenderConfig
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 RecommenderConfig
impl Debug for RecommenderConfig
source§impl PartialEq<RecommenderConfig> for RecommenderConfig
impl PartialEq<RecommenderConfig> for RecommenderConfig
source§fn eq(&self, other: &RecommenderConfig) -> bool
fn eq(&self, other: &RecommenderConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.