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 ActivityTaskFailedEventAttributes = ActivityTaskFailedEventAttributes' {}
- newActivityTaskFailedEventAttributes :: Integer -> Integer -> ActivityTaskFailedEventAttributes
- activityTaskFailedEventAttributes_reason :: Lens' ActivityTaskFailedEventAttributes (Maybe Text)
- activityTaskFailedEventAttributes_details :: Lens' ActivityTaskFailedEventAttributes (Maybe Text)
- activityTaskFailedEventAttributes_scheduledEventId :: Lens' ActivityTaskFailedEventAttributes Integer
- activityTaskFailedEventAttributes_startedEventId :: Lens' ActivityTaskFailedEventAttributes Integer
Documentation
data ActivityTaskFailedEventAttributes Source #
Provides the details of the ActivityTaskFailed
event.
See: newActivityTaskFailedEventAttributes
smart constructor.
ActivityTaskFailedEventAttributes' | |
|
Instances
newActivityTaskFailedEventAttributes Source #
Create a value of ActivityTaskFailedEventAttributes
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:reason:ActivityTaskFailedEventAttributes'
, activityTaskFailedEventAttributes_reason
- The reason provided for the failure.
$sel:details:ActivityTaskFailedEventAttributes'
, activityTaskFailedEventAttributes_details
- The details of the failure.
$sel:scheduledEventId:ActivityTaskFailedEventAttributes'
, activityTaskFailedEventAttributes_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:ActivityTaskFailedEventAttributes'
, activityTaskFailedEventAttributes_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.
activityTaskFailedEventAttributes_reason :: Lens' ActivityTaskFailedEventAttributes (Maybe Text) Source #
The reason provided for the failure.
activityTaskFailedEventAttributes_details :: Lens' ActivityTaskFailedEventAttributes (Maybe Text) Source #
The details of the failure.
activityTaskFailedEventAttributes_scheduledEventId :: Lens' ActivityTaskFailedEventAttributes 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.
activityTaskFailedEventAttributes_startedEventId :: Lens' ActivityTaskFailedEventAttributes 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.