{-# 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.ExperimentActionState -- 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.ExperimentActionState 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.ExperimentActionStatus import qualified Amazonka.Prelude as Prelude -- | Describes the state of an action. -- -- /See:/ 'newExperimentActionState' smart constructor. data ExperimentActionState = ExperimentActionState' { -- | The reason for the state. reason :: Prelude.Maybe Prelude.Text, -- | The state of the action. status :: Prelude.Maybe ExperimentActionStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ExperimentActionState' 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: -- -- 'reason', 'experimentActionState_reason' - The reason for the state. -- -- 'status', 'experimentActionState_status' - The state of the action. newExperimentActionState :: ExperimentActionState newExperimentActionState = ExperimentActionState' { reason = Prelude.Nothing, status = Prelude.Nothing } -- | The reason for the state. experimentActionState_reason :: Lens.Lens' ExperimentActionState (Prelude.Maybe Prelude.Text) experimentActionState_reason = Lens.lens (\ExperimentActionState' {reason} -> reason) (\s@ExperimentActionState' {} a -> s {reason = a} :: ExperimentActionState) -- | The state of the action. experimentActionState_status :: Lens.Lens' ExperimentActionState (Prelude.Maybe ExperimentActionStatus) experimentActionState_status = Lens.lens (\ExperimentActionState' {status} -> status) (\s@ExperimentActionState' {} a -> s {status = a} :: ExperimentActionState) instance Data.FromJSON ExperimentActionState where parseJSON = Data.withObject "ExperimentActionState" ( \x -> ExperimentActionState' Prelude.<$> (x Data..:? "reason") Prelude.<*> (x Data..:? "status") ) instance Prelude.Hashable ExperimentActionState where hashWithSalt _salt ExperimentActionState' {..} = _salt `Prelude.hashWithSalt` reason `Prelude.hashWithSalt` status instance Prelude.NFData ExperimentActionState where rnf ExperimentActionState' {..} = Prelude.rnf reason `Prelude.seq` Prelude.rnf status