pub struct Builder { /* private fields */ }
Expand description
A builder for BatchInferenceJobConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn item_exploration_config(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn item_exploration_config(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
Adds a key-value pair to item_exploration_config
.
To override the contents of this collection use set_item_exploration_config
.
A string to string map specifying 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. See User-Personalization.
sourcepub fn set_item_exploration_config(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_item_exploration_config(
self,
input: Option<HashMap<String, String>>
) -> Self
A string to string map specifying 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. See User-Personalization.
sourcepub fn build(self) -> BatchInferenceJobConfig
pub fn build(self) -> BatchInferenceJobConfig
Consumes the builder and constructs a BatchInferenceJobConfig
.