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 DecisionTaskCompletedEventAttributes = DecisionTaskCompletedEventAttributes' {}
- newDecisionTaskCompletedEventAttributes :: Integer -> Integer -> DecisionTaskCompletedEventAttributes
- decisionTaskCompletedEventAttributes_executionContext :: Lens' DecisionTaskCompletedEventAttributes (Maybe Text)
- decisionTaskCompletedEventAttributes_scheduledEventId :: Lens' DecisionTaskCompletedEventAttributes Integer
- decisionTaskCompletedEventAttributes_startedEventId :: Lens' DecisionTaskCompletedEventAttributes Integer
Documentation
data DecisionTaskCompletedEventAttributes Source #
Provides the details of the DecisionTaskCompleted
event.
See: newDecisionTaskCompletedEventAttributes
smart constructor.
DecisionTaskCompletedEventAttributes' | |
|
Instances
newDecisionTaskCompletedEventAttributes Source #
Create a value of DecisionTaskCompletedEventAttributes
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:executionContext:DecisionTaskCompletedEventAttributes'
, decisionTaskCompletedEventAttributes_executionContext
- User defined context for the workflow execution.
$sel:scheduledEventId:DecisionTaskCompletedEventAttributes'
, decisionTaskCompletedEventAttributes_scheduledEventId
- The ID of the DecisionTaskScheduled
event that was recorded when this
decision task was scheduled. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
$sel:startedEventId:DecisionTaskCompletedEventAttributes'
, decisionTaskCompletedEventAttributes_startedEventId
- The ID of the DecisionTaskStarted
event recorded when this decision
task was started. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.
decisionTaskCompletedEventAttributes_executionContext :: Lens' DecisionTaskCompletedEventAttributes (Maybe Text) Source #
User defined context for the workflow execution.
decisionTaskCompletedEventAttributes_scheduledEventId :: Lens' DecisionTaskCompletedEventAttributes Integer Source #
The ID of the DecisionTaskScheduled
event that was recorded when this
decision task was scheduled. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
decisionTaskCompletedEventAttributes_startedEventId :: Lens' DecisionTaskCompletedEventAttributes Integer Source #
The ID of the DecisionTaskStarted
event recorded when this decision
task was started. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.