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 SignalExternalWorkflowExecutionInitiatedEventAttributes = SignalExternalWorkflowExecutionInitiatedEventAttributes' {
- control :: Maybe Text
- input :: Maybe Text
- runId :: Maybe Text
- workflowId :: Text
- signalName :: Text
- decisionTaskCompletedEventId :: Integer
- newSignalExternalWorkflowExecutionInitiatedEventAttributes :: Text -> Text -> Integer -> SignalExternalWorkflowExecutionInitiatedEventAttributes
- signalExternalWorkflowExecutionInitiatedEventAttributes_control :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text)
- signalExternalWorkflowExecutionInitiatedEventAttributes_input :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text)
- signalExternalWorkflowExecutionInitiatedEventAttributes_runId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text)
- signalExternalWorkflowExecutionInitiatedEventAttributes_workflowId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Text
- signalExternalWorkflowExecutionInitiatedEventAttributes_signalName :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Text
- signalExternalWorkflowExecutionInitiatedEventAttributes_decisionTaskCompletedEventId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Integer
Documentation
data SignalExternalWorkflowExecutionInitiatedEventAttributes Source #
Provides the details of the SignalExternalWorkflowExecutionInitiated
event.
See: newSignalExternalWorkflowExecutionInitiatedEventAttributes
smart constructor.
SignalExternalWorkflowExecutionInitiatedEventAttributes' | |
|
Instances
newSignalExternalWorkflowExecutionInitiatedEventAttributes Source #
Create a value of SignalExternalWorkflowExecutionInitiatedEventAttributes
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:control:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_control
- Data attached to the event that can be used by the decider in subsequent
decision tasks.
$sel:input:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_input
- The input provided to the signal.
$sel:runId:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_runId
- The runId
of the external workflow execution to send the signal to.
$sel:workflowId:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_workflowId
- The workflowId
of the external workflow execution.
$sel:signalName:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_signalName
- The name of the signal.
$sel:decisionTaskCompletedEventId:SignalExternalWorkflowExecutionInitiatedEventAttributes'
, signalExternalWorkflowExecutionInitiatedEventAttributes_decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the SignalExternalWorkflowExecution
decision for this signal. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.
signalExternalWorkflowExecutionInitiatedEventAttributes_control :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text) Source #
Data attached to the event that can be used by the decider in subsequent decision tasks.
signalExternalWorkflowExecutionInitiatedEventAttributes_input :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text) Source #
The input provided to the signal.
signalExternalWorkflowExecutionInitiatedEventAttributes_runId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes (Maybe Text) Source #
The runId
of the external workflow execution to send the signal to.
signalExternalWorkflowExecutionInitiatedEventAttributes_workflowId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Text Source #
The workflowId
of the external workflow execution.
signalExternalWorkflowExecutionInitiatedEventAttributes_signalName :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Text Source #
The name of the signal.
signalExternalWorkflowExecutionInitiatedEventAttributes_decisionTaskCompletedEventId :: Lens' SignalExternalWorkflowExecutionInitiatedEventAttributes Integer Source #
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the SignalExternalWorkflowExecution
decision for this signal. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this event.