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 AttemptDetail = AttemptDetail' {}
- newAttemptDetail :: AttemptDetail
- attemptDetail_stoppedAt :: Lens' AttemptDetail (Maybe Integer)
- attemptDetail_startedAt :: Lens' AttemptDetail (Maybe Integer)
- attemptDetail_container :: Lens' AttemptDetail (Maybe AttemptContainerDetail)
- attemptDetail_statusReason :: Lens' AttemptDetail (Maybe Text)
Documentation
data AttemptDetail Source #
An object representing a job attempt.
See: newAttemptDetail
smart constructor.
AttemptDetail' | |
|
Instances
newAttemptDetail :: AttemptDetail Source #
Create a value of AttemptDetail
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:stoppedAt:AttemptDetail'
, attemptDetail_stoppedAt
- The Unix timestamp (in milliseconds) for when the attempt was stopped
(when the attempt transitioned from the RUNNING
state to a terminal
state, such as SUCCEEDED
or FAILED
).
$sel:startedAt:AttemptDetail'
, attemptDetail_startedAt
- The Unix timestamp (in milliseconds) for when the attempt was started
(when the attempt transitioned from the STARTING
state to the
RUNNING
state).
$sel:container:AttemptDetail'
, attemptDetail_container
- Details about the container in this job attempt.
$sel:statusReason:AttemptDetail'
, attemptDetail_statusReason
- A short, human-readable string to provide additional details about the
current status of the job attempt.
attemptDetail_stoppedAt :: Lens' AttemptDetail (Maybe Integer) Source #
The Unix timestamp (in milliseconds) for when the attempt was stopped
(when the attempt transitioned from the RUNNING
state to a terminal
state, such as SUCCEEDED
or FAILED
).
attemptDetail_startedAt :: Lens' AttemptDetail (Maybe Integer) Source #
The Unix timestamp (in milliseconds) for when the attempt was started
(when the attempt transitioned from the STARTING
state to the
RUNNING
state).
attemptDetail_container :: Lens' AttemptDetail (Maybe AttemptContainerDetail) Source #
Details about the container in this job attempt.
attemptDetail_statusReason :: Lens' AttemptDetail (Maybe Text) Source #
A short, human-readable string to provide additional details about the current status of the job attempt.