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 ActivityTaskTimedOutEventAttributes = ActivityTaskTimedOutEventAttributes' {}
- newActivityTaskTimedOutEventAttributes :: ActivityTaskTimeoutType -> Integer -> Integer -> ActivityTaskTimedOutEventAttributes
- activityTaskTimedOutEventAttributes_details :: Lens' ActivityTaskTimedOutEventAttributes (Maybe Text)
- activityTaskTimedOutEventAttributes_timeoutType :: Lens' ActivityTaskTimedOutEventAttributes ActivityTaskTimeoutType
- activityTaskTimedOutEventAttributes_scheduledEventId :: Lens' ActivityTaskTimedOutEventAttributes Integer
- activityTaskTimedOutEventAttributes_startedEventId :: Lens' ActivityTaskTimedOutEventAttributes Integer
Documentation
data ActivityTaskTimedOutEventAttributes Source #
Provides the details of the ActivityTaskTimedOut
event.
See: newActivityTaskTimedOutEventAttributes
smart constructor.
ActivityTaskTimedOutEventAttributes' | |
|
Instances
newActivityTaskTimedOutEventAttributes Source #
Create a value of ActivityTaskTimedOutEventAttributes
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:details:ActivityTaskTimedOutEventAttributes'
, activityTaskTimedOutEventAttributes_details
- Contains the content of the details
parameter for the last call made
by the activity to RecordActivityTaskHeartbeat
.
$sel:timeoutType:ActivityTaskTimedOutEventAttributes'
, activityTaskTimedOutEventAttributes_timeoutType
- The type of the timeout that caused this event.
$sel:scheduledEventId:ActivityTaskTimedOutEventAttributes'
, activityTaskTimedOutEventAttributes_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:ActivityTaskTimedOutEventAttributes'
, activityTaskTimedOutEventAttributes_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.
activityTaskTimedOutEventAttributes_details :: Lens' ActivityTaskTimedOutEventAttributes (Maybe Text) Source #
Contains the content of the details
parameter for the last call made
by the activity to RecordActivityTaskHeartbeat
.
activityTaskTimedOutEventAttributes_timeoutType :: Lens' ActivityTaskTimedOutEventAttributes ActivityTaskTimeoutType Source #
The type of the timeout that caused this event.
activityTaskTimedOutEventAttributes_scheduledEventId :: Lens' ActivityTaskTimedOutEventAttributes 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.
activityTaskTimedOutEventAttributes_startedEventId :: Lens' ActivityTaskTimedOutEventAttributes 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.