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 ChildWorkflowExecutionCompletedEventAttributes = ChildWorkflowExecutionCompletedEventAttributes' {}
- newChildWorkflowExecutionCompletedEventAttributes :: WorkflowExecution -> WorkflowType -> Integer -> Integer -> ChildWorkflowExecutionCompletedEventAttributes
- childWorkflowExecutionCompletedEventAttributes_result :: Lens' ChildWorkflowExecutionCompletedEventAttributes (Maybe Text)
- childWorkflowExecutionCompletedEventAttributes_workflowExecution :: Lens' ChildWorkflowExecutionCompletedEventAttributes WorkflowExecution
- childWorkflowExecutionCompletedEventAttributes_workflowType :: Lens' ChildWorkflowExecutionCompletedEventAttributes WorkflowType
- childWorkflowExecutionCompletedEventAttributes_initiatedEventId :: Lens' ChildWorkflowExecutionCompletedEventAttributes Integer
- childWorkflowExecutionCompletedEventAttributes_startedEventId :: Lens' ChildWorkflowExecutionCompletedEventAttributes Integer
Documentation
data ChildWorkflowExecutionCompletedEventAttributes Source #
Provides the details of the ChildWorkflowExecutionCompleted
event.
See: newChildWorkflowExecutionCompletedEventAttributes
smart constructor.
ChildWorkflowExecutionCompletedEventAttributes' | |
|
Instances
newChildWorkflowExecutionCompletedEventAttributes Source #
Create a value of ChildWorkflowExecutionCompletedEventAttributes
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:ChildWorkflowExecutionCompletedEventAttributes'
, childWorkflowExecutionCompletedEventAttributes_result
- The result of the child workflow execution.
$sel:workflowExecution:ChildWorkflowExecutionCompletedEventAttributes'
, childWorkflowExecutionCompletedEventAttributes_workflowExecution
- The child workflow execution that was completed.
$sel:workflowType:ChildWorkflowExecutionCompletedEventAttributes'
, childWorkflowExecutionCompletedEventAttributes_workflowType
- The type of the child workflow execution.
$sel:initiatedEventId:ChildWorkflowExecutionCompletedEventAttributes'
, childWorkflowExecutionCompletedEventAttributes_initiatedEventId
- The ID of the StartChildWorkflowExecutionInitiated
event corresponding
to the StartChildWorkflowExecution
Decision to start this child
workflow execution. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.
$sel:startedEventId:ChildWorkflowExecutionCompletedEventAttributes'
, childWorkflowExecutionCompletedEventAttributes_startedEventId
- The ID of the ChildWorkflowExecutionStarted
event recorded when this
child workflow execution was started. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
childWorkflowExecutionCompletedEventAttributes_result :: Lens' ChildWorkflowExecutionCompletedEventAttributes (Maybe Text) Source #
The result of the child workflow execution.
childWorkflowExecutionCompletedEventAttributes_workflowExecution :: Lens' ChildWorkflowExecutionCompletedEventAttributes WorkflowExecution Source #
The child workflow execution that was completed.
childWorkflowExecutionCompletedEventAttributes_workflowType :: Lens' ChildWorkflowExecutionCompletedEventAttributes WorkflowType Source #
The type of the child workflow execution.
childWorkflowExecutionCompletedEventAttributes_initiatedEventId :: Lens' ChildWorkflowExecutionCompletedEventAttributes Integer Source #
The ID of the StartChildWorkflowExecutionInitiated
event corresponding
to the StartChildWorkflowExecution
Decision to start this child
workflow execution. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.
childWorkflowExecutionCompletedEventAttributes_startedEventId :: Lens' ChildWorkflowExecutionCompletedEventAttributes Integer Source #
The ID of the ChildWorkflowExecutionStarted
event recorded when this
child workflow execution was started. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.