amazonka-sagemaker-2.0: gen/Amazonka/SageMaker/Types/ExperimentConfig.hs
{-# 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.SageMaker.Types.ExperimentConfig
-- 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.SageMaker.Types.ExperimentConfig 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
-- | Associates a SageMaker job as a trial component with an experiment and
-- trial. Specified when you call the following APIs:
--
-- - CreateProcessingJob
--
-- - CreateTrainingJob
--
-- - CreateTransformJob
--
-- /See:/ 'newExperimentConfig' smart constructor.
data ExperimentConfig = ExperimentConfig'
{ -- | The name of an existing experiment to associate with the trial
-- component.
experimentName :: Prelude.Maybe Prelude.Text,
-- | The name of the experiment run to associate with the trial component.
runName :: Prelude.Maybe Prelude.Text,
-- | The display name for the trial component. If this key isn\'t specified,
-- the display name is the trial component name.
trialComponentDisplayName :: Prelude.Maybe Prelude.Text,
-- | The name of an existing trial to associate the trial component with. If
-- not specified, a new trial is created.
trialName :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ExperimentConfig' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'experimentName', 'experimentConfig_experimentName' - The name of an existing experiment to associate with the trial
-- component.
--
-- 'runName', 'experimentConfig_runName' - The name of the experiment run to associate with the trial component.
--
-- 'trialComponentDisplayName', 'experimentConfig_trialComponentDisplayName' - The display name for the trial component. If this key isn\'t specified,
-- the display name is the trial component name.
--
-- 'trialName', 'experimentConfig_trialName' - The name of an existing trial to associate the trial component with. If
-- not specified, a new trial is created.
newExperimentConfig ::
ExperimentConfig
newExperimentConfig =
ExperimentConfig'
{ experimentName = Prelude.Nothing,
runName = Prelude.Nothing,
trialComponentDisplayName = Prelude.Nothing,
trialName = Prelude.Nothing
}
-- | The name of an existing experiment to associate with the trial
-- component.
experimentConfig_experimentName :: Lens.Lens' ExperimentConfig (Prelude.Maybe Prelude.Text)
experimentConfig_experimentName = Lens.lens (\ExperimentConfig' {experimentName} -> experimentName) (\s@ExperimentConfig' {} a -> s {experimentName = a} :: ExperimentConfig)
-- | The name of the experiment run to associate with the trial component.
experimentConfig_runName :: Lens.Lens' ExperimentConfig (Prelude.Maybe Prelude.Text)
experimentConfig_runName = Lens.lens (\ExperimentConfig' {runName} -> runName) (\s@ExperimentConfig' {} a -> s {runName = a} :: ExperimentConfig)
-- | The display name for the trial component. If this key isn\'t specified,
-- the display name is the trial component name.
experimentConfig_trialComponentDisplayName :: Lens.Lens' ExperimentConfig (Prelude.Maybe Prelude.Text)
experimentConfig_trialComponentDisplayName = Lens.lens (\ExperimentConfig' {trialComponentDisplayName} -> trialComponentDisplayName) (\s@ExperimentConfig' {} a -> s {trialComponentDisplayName = a} :: ExperimentConfig)
-- | The name of an existing trial to associate the trial component with. If
-- not specified, a new trial is created.
experimentConfig_trialName :: Lens.Lens' ExperimentConfig (Prelude.Maybe Prelude.Text)
experimentConfig_trialName = Lens.lens (\ExperimentConfig' {trialName} -> trialName) (\s@ExperimentConfig' {} a -> s {trialName = a} :: ExperimentConfig)
instance Data.FromJSON ExperimentConfig where
parseJSON =
Data.withObject
"ExperimentConfig"
( \x ->
ExperimentConfig'
Prelude.<$> (x Data..:? "ExperimentName")
Prelude.<*> (x Data..:? "RunName")
Prelude.<*> (x Data..:? "TrialComponentDisplayName")
Prelude.<*> (x Data..:? "TrialName")
)
instance Prelude.Hashable ExperimentConfig where
hashWithSalt _salt ExperimentConfig' {..} =
_salt
`Prelude.hashWithSalt` experimentName
`Prelude.hashWithSalt` runName
`Prelude.hashWithSalt` trialComponentDisplayName
`Prelude.hashWithSalt` trialName
instance Prelude.NFData ExperimentConfig where
rnf ExperimentConfig' {..} =
Prelude.rnf experimentName
`Prelude.seq` Prelude.rnf runName
`Prelude.seq` Prelude.rnf trialComponentDisplayName
`Prelude.seq` Prelude.rnf trialName
instance Data.ToJSON ExperimentConfig where
toJSON ExperimentConfig' {..} =
Data.object
( Prelude.catMaybes
[ ("ExperimentName" Data..=)
Prelude.<$> experimentName,
("RunName" Data..=) Prelude.<$> runName,
("TrialComponentDisplayName" Data..=)
Prelude.<$> trialComponentDisplayName,
("TrialName" Data..=) Prelude.<$> trialName
]
)