SignalWorkflowExecutionInput
public struct SignalWorkflowExecutionInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the domain containing the workflow execution to signal.
Declaration
Swift
public let domain: String
-
Data to attach to the WorkflowExecutionSignaled event in the target workflow execution’s history.
Declaration
Swift
public let input: String?
-
The runId of the workflow execution to signal.
Declaration
Swift
public let runId: String?
-
The name of the signal. This name must be meaningful to the target workflow.
Declaration
Swift
public let signalName: String
-
The workflowId of the workflow execution to signal.
Declaration
Swift
public let workflowId: String
-
Undocumented
Declaration
Swift
public init(domain: String, input: String? = nil, runId: String? = nil, signalName: String, workflowId: String)
-
Declaration
Swift
public func validate(name: String) throws