{-# 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.SWF.Types.TimerCanceledEventAttributes -- 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.SWF.Types.TimerCanceledEventAttributes 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 -- | Provides the details of the @TimerCanceled@ event. -- -- /See:/ 'newTimerCanceledEventAttributes' smart constructor. data TimerCanceledEventAttributes = TimerCanceledEventAttributes' { -- | The unique ID of the timer that was canceled. timerId :: Prelude.Text, -- | The ID of the @TimerStarted@ event that was recorded when this timer was -- started. This information can be useful for diagnosing problems by -- tracing back the chain of events leading up to this event. startedEventId :: Prelude.Integer, -- | The ID of the @DecisionTaskCompleted@ event corresponding to the -- decision task that resulted in the @CancelTimer@ decision to cancel this -- timer. This information can be useful for diagnosing problems by tracing -- back the chain of events leading up to this event. decisionTaskCompletedEventId :: Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TimerCanceledEventAttributes' 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: -- -- 'timerId', 'timerCanceledEventAttributes_timerId' - The unique ID of the timer that was canceled. -- -- 'startedEventId', 'timerCanceledEventAttributes_startedEventId' - The ID of the @TimerStarted@ event that was recorded when this timer was -- started. This information can be useful for diagnosing problems by -- tracing back the chain of events leading up to this event. -- -- 'decisionTaskCompletedEventId', 'timerCanceledEventAttributes_decisionTaskCompletedEventId' - The ID of the @DecisionTaskCompleted@ event corresponding to the -- decision task that resulted in the @CancelTimer@ decision to cancel this -- timer. This information can be useful for diagnosing problems by tracing -- back the chain of events leading up to this event. newTimerCanceledEventAttributes :: -- | 'timerId' Prelude.Text -> -- | 'startedEventId' Prelude.Integer -> -- | 'decisionTaskCompletedEventId' Prelude.Integer -> TimerCanceledEventAttributes newTimerCanceledEventAttributes pTimerId_ pStartedEventId_ pDecisionTaskCompletedEventId_ = TimerCanceledEventAttributes' { timerId = pTimerId_, startedEventId = pStartedEventId_, decisionTaskCompletedEventId = pDecisionTaskCompletedEventId_ } -- | The unique ID of the timer that was canceled. timerCanceledEventAttributes_timerId :: Lens.Lens' TimerCanceledEventAttributes Prelude.Text timerCanceledEventAttributes_timerId = Lens.lens (\TimerCanceledEventAttributes' {timerId} -> timerId) (\s@TimerCanceledEventAttributes' {} a -> s {timerId = a} :: TimerCanceledEventAttributes) -- | The ID of the @TimerStarted@ event that was recorded when this timer was -- started. This information can be useful for diagnosing problems by -- tracing back the chain of events leading up to this event. timerCanceledEventAttributes_startedEventId :: Lens.Lens' TimerCanceledEventAttributes Prelude.Integer timerCanceledEventAttributes_startedEventId = Lens.lens (\TimerCanceledEventAttributes' {startedEventId} -> startedEventId) (\s@TimerCanceledEventAttributes' {} a -> s {startedEventId = a} :: TimerCanceledEventAttributes) -- | The ID of the @DecisionTaskCompleted@ event corresponding to the -- decision task that resulted in the @CancelTimer@ decision to cancel this -- timer. This information can be useful for diagnosing problems by tracing -- back the chain of events leading up to this event. timerCanceledEventAttributes_decisionTaskCompletedEventId :: Lens.Lens' TimerCanceledEventAttributes Prelude.Integer timerCanceledEventAttributes_decisionTaskCompletedEventId = Lens.lens (\TimerCanceledEventAttributes' {decisionTaskCompletedEventId} -> decisionTaskCompletedEventId) (\s@TimerCanceledEventAttributes' {} a -> s {decisionTaskCompletedEventId = a} :: TimerCanceledEventAttributes) instance Data.FromJSON TimerCanceledEventAttributes where parseJSON = Data.withObject "TimerCanceledEventAttributes" ( \x -> TimerCanceledEventAttributes' Prelude.<$> (x Data..: "timerId") Prelude.<*> (x Data..: "startedEventId") Prelude.<*> (x Data..: "decisionTaskCompletedEventId") ) instance Prelude.Hashable TimerCanceledEventAttributes where hashWithSalt _salt TimerCanceledEventAttributes' {..} = _salt `Prelude.hashWithSalt` timerId `Prelude.hashWithSalt` startedEventId `Prelude.hashWithSalt` decisionTaskCompletedEventId instance Prelude.NFData TimerCanceledEventAttributes where rnf TimerCanceledEventAttributes' {..} = Prelude.rnf timerId `Prelude.seq` Prelude.rnf startedEventId `Prelude.seq` Prelude.rnf decisionTaskCompletedEventId