RespondDecisionTaskCompletedInput

public struct RespondDecisionTaskCompletedInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The list of decisions (possibly empty) made by the decider while processing this decision task. See the docs for the Decision structure for details.

    Declaration

    Swift

    public let decisions: [Decision]?
  • User defined context to add to workflow execution.

    Declaration

    Swift

    public let executionContext: String?
  • The taskToken from the DecisionTask. taskToken is generated by the service and should be treated as an opaque value. If the task is passed to another process, its taskToken must also be passed. This enables it to provide its progress and respond with results.

    Declaration

    Swift

    public let taskToken: String
  • Undocumented

    Declaration

    Swift

    public init(decisions: [Decision]? = nil, executionContext: String? = nil, taskToken: String)
  • Declaration

    Swift

    public func validate(name: String) throws