{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Personalize.Types.HPOObjective -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Personalize.Types.HPOObjective where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | The metric to optimize during hyperparameter optimization (HPO). -- -- Amazon Personalize doesn\'t support configuring the @hpoObjective@ at -- this time. -- -- /See:/ 'newHPOObjective' smart constructor. data HPOObjective = HPOObjective' { -- | The name of the metric. metricName :: Prelude.Maybe Prelude.Text, -- | A regular expression for finding the metric in the training job logs. metricRegex :: Prelude.Maybe Prelude.Text, -- | The type of the metric. Valid values are @Maximize@ and @Minimize@. type' :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HPOObjective' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'metricName', 'hPOObjective_metricName' - The name of the metric. -- -- 'metricRegex', 'hPOObjective_metricRegex' - A regular expression for finding the metric in the training job logs. -- -- 'type'', 'hPOObjective_type' - The type of the metric. Valid values are @Maximize@ and @Minimize@. newHPOObjective :: HPOObjective newHPOObjective = HPOObjective' { metricName = Prelude.Nothing, metricRegex = Prelude.Nothing, type' = Prelude.Nothing } -- | The name of the metric. hPOObjective_metricName :: Lens.Lens' HPOObjective (Prelude.Maybe Prelude.Text) hPOObjective_metricName = Lens.lens (\HPOObjective' {metricName} -> metricName) (\s@HPOObjective' {} a -> s {metricName = a} :: HPOObjective) -- | A regular expression for finding the metric in the training job logs. hPOObjective_metricRegex :: Lens.Lens' HPOObjective (Prelude.Maybe Prelude.Text) hPOObjective_metricRegex = Lens.lens (\HPOObjective' {metricRegex} -> metricRegex) (\s@HPOObjective' {} a -> s {metricRegex = a} :: HPOObjective) -- | The type of the metric. Valid values are @Maximize@ and @Minimize@. hPOObjective_type :: Lens.Lens' HPOObjective (Prelude.Maybe Prelude.Text) hPOObjective_type = Lens.lens (\HPOObjective' {type'} -> type') (\s@HPOObjective' {} a -> s {type' = a} :: HPOObjective) instance Data.FromJSON HPOObjective where parseJSON = Data.withObject "HPOObjective" ( \x -> HPOObjective' Prelude.<$> (x Data..:? "metricName") Prelude.<*> (x Data..:? "metricRegex") Prelude.<*> (x Data..:? "type") ) instance Prelude.Hashable HPOObjective where hashWithSalt _salt HPOObjective' {..} = _salt `Prelude.hashWithSalt` metricName `Prelude.hashWithSalt` metricRegex `Prelude.hashWithSalt` type' instance Prelude.NFData HPOObjective where rnf HPOObjective' {..} = Prelude.rnf metricName `Prelude.seq` Prelude.rnf metricRegex `Prelude.seq` Prelude.rnf type' instance Data.ToJSON HPOObjective where toJSON HPOObjective' {..} = Data.object ( Prelude.catMaybes [ ("metricName" Data..=) Prelude.<$> metricName, ("metricRegex" Data..=) Prelude.<$> metricRegex, ("type" Data..=) Prelude.<$> type' ] )