Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data TimerCanceledEventAttributes = TimerCanceledEventAttributes' {}
- newTimerCanceledEventAttributes :: Text -> Integer -> Integer -> TimerCanceledEventAttributes
- timerCanceledEventAttributes_timerId :: Lens' TimerCanceledEventAttributes Text
- timerCanceledEventAttributes_startedEventId :: Lens' TimerCanceledEventAttributes Integer
- timerCanceledEventAttributes_decisionTaskCompletedEventId :: Lens' TimerCanceledEventAttributes Integer
Documentation
data TimerCanceledEventAttributes Source #
Provides the details of the TimerCanceled
event.
See: newTimerCanceledEventAttributes
smart constructor.
TimerCanceledEventAttributes' | |
|
Instances
newTimerCanceledEventAttributes Source #
:: Text | |
-> Integer | |
-> Integer |
|
-> TimerCanceledEventAttributes |
Create a value of TimerCanceledEventAttributes
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:timerId:TimerCanceledEventAttributes'
, timerCanceledEventAttributes_timerId
- The unique ID of the timer that was canceled.
$sel:startedEventId:TimerCanceledEventAttributes'
, 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.
$sel:decisionTaskCompletedEventId:TimerCanceledEventAttributes'
, 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.
timerCanceledEventAttributes_timerId :: Lens' TimerCanceledEventAttributes Text Source #
The unique ID of the timer that was canceled.
timerCanceledEventAttributes_startedEventId :: Lens' TimerCanceledEventAttributes Integer Source #
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_decisionTaskCompletedEventId :: Lens' TimerCanceledEventAttributes Integer Source #
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.