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 WorkflowExecutionFailedEventAttributes = WorkflowExecutionFailedEventAttributes' {}
- newWorkflowExecutionFailedEventAttributes :: Integer -> WorkflowExecutionFailedEventAttributes
- workflowExecutionFailedEventAttributes_reason :: Lens' WorkflowExecutionFailedEventAttributes (Maybe Text)
- workflowExecutionFailedEventAttributes_details :: Lens' WorkflowExecutionFailedEventAttributes (Maybe Text)
- workflowExecutionFailedEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionFailedEventAttributes Integer
Documentation
data WorkflowExecutionFailedEventAttributes Source #
Provides the details of the WorkflowExecutionFailed
event.
See: newWorkflowExecutionFailedEventAttributes
smart constructor.
WorkflowExecutionFailedEventAttributes' | |
|
Instances
newWorkflowExecutionFailedEventAttributes Source #
:: Integer |
|
-> WorkflowExecutionFailedEventAttributes |
Create a value of WorkflowExecutionFailedEventAttributes
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:WorkflowExecutionFailedEventAttributes'
, workflowExecutionFailedEventAttributes_reason
- The descriptive reason provided for the failure.
$sel:details:WorkflowExecutionFailedEventAttributes'
, workflowExecutionFailedEventAttributes_details
- The details of the failure.
$sel:decisionTaskCompletedEventId:WorkflowExecutionFailedEventAttributes'
, workflowExecutionFailedEventAttributes_decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the FailWorkflowExecution
decision to
fail this execution. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.
workflowExecutionFailedEventAttributes_reason :: Lens' WorkflowExecutionFailedEventAttributes (Maybe Text) Source #
The descriptive reason provided for the failure.
workflowExecutionFailedEventAttributes_details :: Lens' WorkflowExecutionFailedEventAttributes (Maybe Text) Source #
The details of the failure.
workflowExecutionFailedEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionFailedEventAttributes Integer Source #
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the FailWorkflowExecution
decision to
fail this execution. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.