WorkflowExecutionSignaledEventAttributes
public struct WorkflowExecutionSignaledEventAttributes : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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.
Declaration
Swift
public let externalInitiatedEventId: Int64?
-
The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.
Declaration
Swift
public let externalWorkflowExecution: WorkflowExecution?
-
The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal.
Declaration
Swift
public let input: String?
-
The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.
Declaration
Swift
public let signalName: String
-
Undocumented
Declaration
Swift
public init(externalInitiatedEventId: Int64? = nil, externalWorkflowExecution: WorkflowExecution? = nil, input: String? = nil, signalName: String)