pub struct OptimizationObjective {
pub item_attribute: Option<String>,
pub objective_sensitivity: Option<String>,
}
Expand description
Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.
Fields§
§item_attribute: Option<String>
The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).
objective_sensitivity: Option<String>
Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.
Trait Implementations§
Source§impl Clone for OptimizationObjective
impl Clone for OptimizationObjective
Source§fn clone(&self) -> OptimizationObjective
fn clone(&self) -> OptimizationObjective
Returns a duplicate 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 OptimizationObjective
impl Debug for OptimizationObjective
Source§impl Default for OptimizationObjective
impl Default for OptimizationObjective
Source§fn default() -> OptimizationObjective
fn default() -> OptimizationObjective
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OptimizationObjective
impl<'de> Deserialize<'de> for OptimizationObjective
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OptimizationObjective
impl PartialEq for OptimizationObjective
Source§impl Serialize for OptimizationObjective
impl Serialize for OptimizationObjective
impl StructuralPartialEq for OptimizationObjective
Auto Trait Implementations§
impl Freeze for OptimizationObjective
impl RefUnwindSafe for OptimizationObjective
impl Send for OptimizationObjective
impl Sync for OptimizationObjective
impl Unpin for OptimizationObjective
impl UnwindSafe for OptimizationObjective
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
Mutably borrows from an owned value. Read more