SignalExternalWorkflowExecutionDecisionAttributes

public struct SignalExternalWorkflowExecutionDecisionAttributes : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The data attached to the event that can be used by the decider in subsequent decision tasks.

    Declaration

    Swift

    public let control: String?
  • The input data to be provided with the signal. The target workflow execution uses the signal name and input data to process the signal.

    Declaration

    Swift

    public let input: String?
  • The runId of the workflow execution to be signaled.

    Declaration

    Swift

    public let runId: String?
  • The name of the signal.The target workflow execution uses the signal name and input to process the signal.

    Declaration

    Swift

    public let signalName: String
  • The workflowId of the workflow execution to be signaled.

    Declaration

    Swift

    public let workflowId: String
  • Undocumented

    Declaration

    Swift

    public init(control: String? = nil, input: String? = nil, runId: String? = nil, signalName: String, workflowId: String)
  • Declaration

    Swift

    public func validate(name: String) throws