| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SWF.Types.TimerCanceledEventAttributes
Description
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.
Constructors
| TimerCanceledEventAttributes' | |
Fields
| |
Instances
newTimerCanceledEventAttributes Source #
Arguments
| :: 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.