{-# 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.Synthetics.Types.CanaryStatus -- 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.Synthetics.Types.CanaryStatus 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 import Amazonka.Synthetics.Types.CanaryState import Amazonka.Synthetics.Types.CanaryStateReasonCode -- | A structure that contains the current state of the canary. -- -- /See:/ 'newCanaryStatus' smart constructor. data CanaryStatus = CanaryStatus' { -- | The current state of the canary. state :: Prelude.Maybe CanaryState, -- | If the canary has insufficient permissions to run, this field provides -- more details. stateReason :: Prelude.Maybe Prelude.Text, -- | If the canary cannot run or has failed, this field displays the reason. stateReasonCode :: Prelude.Maybe CanaryStateReasonCode } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CanaryStatus' 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: -- -- 'state', 'canaryStatus_state' - The current state of the canary. -- -- 'stateReason', 'canaryStatus_stateReason' - If the canary has insufficient permissions to run, this field provides -- more details. -- -- 'stateReasonCode', 'canaryStatus_stateReasonCode' - If the canary cannot run or has failed, this field displays the reason. newCanaryStatus :: CanaryStatus newCanaryStatus = CanaryStatus' { state = Prelude.Nothing, stateReason = Prelude.Nothing, stateReasonCode = Prelude.Nothing } -- | The current state of the canary. canaryStatus_state :: Lens.Lens' CanaryStatus (Prelude.Maybe CanaryState) canaryStatus_state = Lens.lens (\CanaryStatus' {state} -> state) (\s@CanaryStatus' {} a -> s {state = a} :: CanaryStatus) -- | If the canary has insufficient permissions to run, this field provides -- more details. canaryStatus_stateReason :: Lens.Lens' CanaryStatus (Prelude.Maybe Prelude.Text) canaryStatus_stateReason = Lens.lens (\CanaryStatus' {stateReason} -> stateReason) (\s@CanaryStatus' {} a -> s {stateReason = a} :: CanaryStatus) -- | If the canary cannot run or has failed, this field displays the reason. canaryStatus_stateReasonCode :: Lens.Lens' CanaryStatus (Prelude.Maybe CanaryStateReasonCode) canaryStatus_stateReasonCode = Lens.lens (\CanaryStatus' {stateReasonCode} -> stateReasonCode) (\s@CanaryStatus' {} a -> s {stateReasonCode = a} :: CanaryStatus) instance Data.FromJSON CanaryStatus where parseJSON = Data.withObject "CanaryStatus" ( \x -> CanaryStatus' Prelude.<$> (x Data..:? "State") Prelude.<*> (x Data..:? "StateReason") Prelude.<*> (x Data..:? "StateReasonCode") ) instance Prelude.Hashable CanaryStatus where hashWithSalt _salt CanaryStatus' {..} = _salt `Prelude.hashWithSalt` state `Prelude.hashWithSalt` stateReason `Prelude.hashWithSalt` stateReasonCode instance Prelude.NFData CanaryStatus where rnf CanaryStatus' {..} = Prelude.rnf state `Prelude.seq` Prelude.rnf stateReason `Prelude.seq` Prelude.rnf stateReasonCode