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 ActivityTaskCompletedEventAttributes = ActivityTaskCompletedEventAttributes' {}
- newActivityTaskCompletedEventAttributes :: Integer -> Integer -> ActivityTaskCompletedEventAttributes
- activityTaskCompletedEventAttributes_result :: Lens' ActivityTaskCompletedEventAttributes (Maybe Text)
- activityTaskCompletedEventAttributes_scheduledEventId :: Lens' ActivityTaskCompletedEventAttributes Integer
- activityTaskCompletedEventAttributes_startedEventId :: Lens' ActivityTaskCompletedEventAttributes Integer
Documentation
data ActivityTaskCompletedEventAttributes Source #
Provides the details of the ActivityTaskCompleted
event.
See: newActivityTaskCompletedEventAttributes
smart constructor.
ActivityTaskCompletedEventAttributes' | |
|
Instances
newActivityTaskCompletedEventAttributes Source #
Create a value of ActivityTaskCompletedEventAttributes
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:result:ActivityTaskCompletedEventAttributes'
, activityTaskCompletedEventAttributes_result
- The results of the activity task.
$sel:scheduledEventId:ActivityTaskCompletedEventAttributes'
, activityTaskCompletedEventAttributes_scheduledEventId
- The ID of the ActivityTaskScheduled
event that was recorded when this
activity 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:ActivityTaskCompletedEventAttributes'
, activityTaskCompletedEventAttributes_startedEventId
- The ID of the ActivityTaskStarted
event recorded when this activity
task was started. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.
activityTaskCompletedEventAttributes_result :: Lens' ActivityTaskCompletedEventAttributes (Maybe Text) Source #
The results of the activity task.
activityTaskCompletedEventAttributes_scheduledEventId :: Lens' ActivityTaskCompletedEventAttributes Integer Source #
The ID of the ActivityTaskScheduled
event that was recorded when this
activity task was scheduled. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
activityTaskCompletedEventAttributes_startedEventId :: Lens' ActivityTaskCompletedEventAttributes Integer Source #
The ID of the ActivityTaskStarted
event recorded when this activity
task was started. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.