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 TimerStartedEventAttributes = TimerStartedEventAttributes' {}
- newTimerStartedEventAttributes :: Text -> Text -> Integer -> TimerStartedEventAttributes
- timerStartedEventAttributes_control :: Lens' TimerStartedEventAttributes (Maybe Text)
- timerStartedEventAttributes_timerId :: Lens' TimerStartedEventAttributes Text
- timerStartedEventAttributes_startToFireTimeout :: Lens' TimerStartedEventAttributes Text
- timerStartedEventAttributes_decisionTaskCompletedEventId :: Lens' TimerStartedEventAttributes Integer
Documentation
data TimerStartedEventAttributes Source #
Provides the details of the TimerStarted
event.
See: newTimerStartedEventAttributes
smart constructor.
TimerStartedEventAttributes' | |
|
Instances
newTimerStartedEventAttributes Source #
:: Text | |
-> Text | |
-> Integer |
|
-> TimerStartedEventAttributes |
Create a value of TimerStartedEventAttributes
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:control:TimerStartedEventAttributes'
, timerStartedEventAttributes_control
- Data attached to the event that can be used by the decider in subsequent
workflow tasks.
$sel:timerId:TimerStartedEventAttributes'
, timerStartedEventAttributes_timerId
- The unique ID of the timer that was started.
$sel:startToFireTimeout:TimerStartedEventAttributes'
, timerStartedEventAttributes_startToFireTimeout
- The duration of time after which the timer fires.
The duration is specified in seconds, an integer greater than or equal
to 0
.
$sel:decisionTaskCompletedEventId:TimerStartedEventAttributes'
, timerStartedEventAttributes_decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the StartTimer
decision for this
activity task. This information can be useful for diagnosing problems by
tracing back the chain of events leading up to this event.
timerStartedEventAttributes_control :: Lens' TimerStartedEventAttributes (Maybe Text) Source #
Data attached to the event that can be used by the decider in subsequent workflow tasks.
timerStartedEventAttributes_timerId :: Lens' TimerStartedEventAttributes Text Source #
The unique ID of the timer that was started.
timerStartedEventAttributes_startToFireTimeout :: Lens' TimerStartedEventAttributes Text Source #
The duration of time after which the timer fires.
The duration is specified in seconds, an integer greater than or equal
to 0
.
timerStartedEventAttributes_decisionTaskCompletedEventId :: Lens' TimerStartedEventAttributes Integer Source #
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the StartTimer
decision for this
activity task. This information can be useful for diagnosing problems by
tracing back the chain of events leading up to this event.