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 WorkflowExecutionCompletedEventAttributes = WorkflowExecutionCompletedEventAttributes' {}
- newWorkflowExecutionCompletedEventAttributes :: Integer -> WorkflowExecutionCompletedEventAttributes
- workflowExecutionCompletedEventAttributes_result :: Lens' WorkflowExecutionCompletedEventAttributes (Maybe Text)
- workflowExecutionCompletedEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionCompletedEventAttributes Integer
Documentation
data WorkflowExecutionCompletedEventAttributes Source #
Provides the details of the WorkflowExecutionCompleted
event.
See: newWorkflowExecutionCompletedEventAttributes
smart constructor.
WorkflowExecutionCompletedEventAttributes' | |
|
Instances
newWorkflowExecutionCompletedEventAttributes Source #
:: Integer |
|
-> WorkflowExecutionCompletedEventAttributes |
Create a value of WorkflowExecutionCompletedEventAttributes
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:WorkflowExecutionCompletedEventAttributes'
, workflowExecutionCompletedEventAttributes_result
- The result produced by the workflow execution upon successful
completion.
$sel:decisionTaskCompletedEventId:WorkflowExecutionCompletedEventAttributes'
, workflowExecutionCompletedEventAttributes_decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the CompleteWorkflowExecution
decision
to complete this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
workflowExecutionCompletedEventAttributes_result :: Lens' WorkflowExecutionCompletedEventAttributes (Maybe Text) Source #
The result produced by the workflow execution upon successful completion.
workflowExecutionCompletedEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionCompletedEventAttributes Integer Source #
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the CompleteWorkflowExecution
decision
to complete this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.