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 WorkflowExecutionSignaledEventAttributes = WorkflowExecutionSignaledEventAttributes' {}
- newWorkflowExecutionSignaledEventAttributes :: Text -> WorkflowExecutionSignaledEventAttributes
- workflowExecutionSignaledEventAttributes_externalWorkflowExecution :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe WorkflowExecution)
- workflowExecutionSignaledEventAttributes_externalInitiatedEventId :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe Integer)
- workflowExecutionSignaledEventAttributes_input :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe Text)
- workflowExecutionSignaledEventAttributes_signalName :: Lens' WorkflowExecutionSignaledEventAttributes Text
Documentation
data WorkflowExecutionSignaledEventAttributes Source #
Provides the details of the WorkflowExecutionSignaled
event.
See: newWorkflowExecutionSignaledEventAttributes
smart constructor.
WorkflowExecutionSignaledEventAttributes' | |
|
Instances
newWorkflowExecutionSignaledEventAttributes Source #
Create a value of WorkflowExecutionSignaledEventAttributes
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:externalWorkflowExecution:WorkflowExecutionSignaledEventAttributes'
, workflowExecutionSignaledEventAttributes_externalWorkflowExecution
- The workflow execution that sent the signal. This is set only of the
signal was sent by another workflow execution.
$sel:externalInitiatedEventId:WorkflowExecutionSignaledEventAttributes'
, workflowExecutionSignaledEventAttributes_externalInitiatedEventId
- The ID of the SignalExternalWorkflowExecutionInitiated
event
corresponding to the SignalExternalWorkflow
decision to signal this
workflow execution.The source event with this ID can be found in the
history of the source workflow execution. This information can be useful
for diagnosing problems by tracing back the chain of events leading up
to this event. This field is set only if the signal was initiated by
another workflow execution.
$sel:input:WorkflowExecutionSignaledEventAttributes'
, workflowExecutionSignaledEventAttributes_input
- The inputs provided with the signal. The decider can use the signal name
and inputs to determine how to process the signal.
$sel:signalName:WorkflowExecutionSignaledEventAttributes'
, workflowExecutionSignaledEventAttributes_signalName
- The name of the signal received. The decider can use the signal name and
inputs to determine how to the process the signal.
workflowExecutionSignaledEventAttributes_externalWorkflowExecution :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe WorkflowExecution) Source #
The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.
workflowExecutionSignaledEventAttributes_externalInitiatedEventId :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe Integer) Source #
The ID of the SignalExternalWorkflowExecutionInitiated
event
corresponding to the SignalExternalWorkflow
decision to signal this
workflow execution.The source event with this ID can be found in the
history of the source workflow execution. This information can be useful
for diagnosing problems by tracing back the chain of events leading up
to this event. This field is set only if the signal was initiated by
another workflow execution.
workflowExecutionSignaledEventAttributes_input :: Lens' WorkflowExecutionSignaledEventAttributes (Maybe Text) Source #
The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal.
workflowExecutionSignaledEventAttributes_signalName :: Lens' WorkflowExecutionSignaledEventAttributes Text Source #
The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.