amazonka-fis-2.0: gen/Amazonka/FIS/Types/ExperimentState.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.FIS.Types.ExperimentState
-- 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.FIS.Types.ExperimentState where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.FIS.Types.ExperimentStatus
import qualified Amazonka.Prelude as Prelude
-- | Describes the state of an experiment.
--
-- /See:/ 'newExperimentState' smart constructor.
data ExperimentState = ExperimentState'
{ -- | The reason for the state.
reason :: Prelude.Maybe Prelude.Text,
-- | The state of the experiment.
status :: Prelude.Maybe ExperimentStatus
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ExperimentState' 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:
--
-- 'reason', 'experimentState_reason' - The reason for the state.
--
-- 'status', 'experimentState_status' - The state of the experiment.
newExperimentState ::
ExperimentState
newExperimentState =
ExperimentState'
{ reason = Prelude.Nothing,
status = Prelude.Nothing
}
-- | The reason for the state.
experimentState_reason :: Lens.Lens' ExperimentState (Prelude.Maybe Prelude.Text)
experimentState_reason = Lens.lens (\ExperimentState' {reason} -> reason) (\s@ExperimentState' {} a -> s {reason = a} :: ExperimentState)
-- | The state of the experiment.
experimentState_status :: Lens.Lens' ExperimentState (Prelude.Maybe ExperimentStatus)
experimentState_status = Lens.lens (\ExperimentState' {status} -> status) (\s@ExperimentState' {} a -> s {status = a} :: ExperimentState)
instance Data.FromJSON ExperimentState where
parseJSON =
Data.withObject
"ExperimentState"
( \x ->
ExperimentState'
Prelude.<$> (x Data..:? "reason")
Prelude.<*> (x Data..:? "status")
)
instance Prelude.Hashable ExperimentState where
hashWithSalt _salt ExperimentState' {..} =
_salt
`Prelude.hashWithSalt` reason
`Prelude.hashWithSalt` status
instance Prelude.NFData ExperimentState where
rnf ExperimentState' {..} =
Prelude.rnf reason `Prelude.seq` Prelude.rnf status