Struct aws_sdk_swf::model::WorkflowExecutionSignaledEventAttributes [−][src]
#[non_exhaustive]pub struct WorkflowExecutionSignaledEventAttributes {
pub signal_name: Option<String>,
pub input: Option<String>,
pub external_workflow_execution: Option<WorkflowExecution>,
pub external_initiated_event_id: i64,
}
Expand description
Provides the details of the WorkflowExecutionSignaled
event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.signal_name: Option<String>
The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.
input: Option<String>
The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal.
external_workflow_execution: Option<WorkflowExecution>
The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.
external_initiated_event_id: i64
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.
Implementations
The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.
The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal.
The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.
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.
Creates a new builder-style object to manufacture WorkflowExecutionSignaledEventAttributes
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more