Decision class
Specifies a decision made by the decider. A decision can be one of these types:
-
CancelTimer– Cancels a previously started timer and records aTimerCanceledevent in the history. -
CancelWorkflowExecution– Closes the workflow execution and records aWorkflowExecutionCanceledevent in the history. -
CompleteWorkflowExecution– Closes the workflow execution and records aWorkflowExecutionCompletedevent in the history . -
ContinueAsNewWorkflowExecution– Closes the workflow execution and starts a new workflow execution of the same type using the same workflow ID and a unique run Id. AWorkflowExecutionContinuedAsNewevent is recorded in the history. -
FailWorkflowExecution– Closes the workflow execution and records aWorkflowExecutionFailedevent in the history. -
RecordMarker– Records aMarkerRecordedevent in the history. Markers can be used for adding custom information in the history for instance to let deciders know that they don't need to look at the history beyond the marker event. -
RequestCancelActivityTask– Attempts to cancel a previously scheduled activity task. If the activity task was scheduled but has not been assigned to a worker, then it is canceled. If the activity task was already assigned to a worker, then the worker is informed that cancellation has been requested in the response to RecordActivityTaskHeartbeat. -
RequestCancelExternalWorkflowExecution– Requests that a request be made to cancel the specified external workflow execution and records aRequestCancelExternalWorkflowExecutionInitiatedevent in the history. -
ScheduleActivityTask– Schedules an activity task. -
SignalExternalWorkflowExecution– Requests a signal to be delivered to the specified external workflow execution and records aSignalExternalWorkflowExecutionInitiatedevent in the history. -
StartChildWorkflowExecution– Requests that a child workflow execution be started and records aStartChildWorkflowExecutionInitiatedevent in the history. The child workflow execution is a separate workflow execution with its own history. -
StartTimer– Starts a timer for this workflow execution and records aTimerStartedevent in the history. This timer fires after the specified delay and record aTimerFiredevent.
If you grant permission to use RespondDecisionTaskCompleted,
you can use IAM policies to express permissions for the list of decisions
returned by this action as if they were members of the API. Treating
decisions as a pseudo API maintains a uniform conceptual model and helps
keep policies readable. For details and example IAM policies, see Using
IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF
Developer Guide.
Decision Failure
Decisions can fail for several reasons
- The ordering of decisions should follow a logical flow. Some decisions might not make sense in the current context of the workflow execution and therefore fails.
- A limit on your account was reached.
- The decision lacks sufficient permissions.
cause parameter indicates the
cause. If cause is set to OPERATION_NOT_PERMITTED,
the decision failed because it lacked sufficient permissions. For details
and example IAM policies, see Using
IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF
Developer Guide.
-
ScheduleActivityTaskFailed– AScheduleActivityTaskdecision failed. This could happen if the activity type specified in the decision isn't registered, is in a deprecated state, or the decision isn't properly configured. -
RequestCancelActivityTaskFailed– ARequestCancelActivityTaskdecision failed. This could happen if there is no open activity task with the specified activityId. -
StartTimerFailed– AStartTimerdecision failed. This could happen if there is another open timer with the same timerId. -
CancelTimerFailed– ACancelTimerdecision failed. This could happen if there is no open timer with the specified timerId. -
StartChildWorkflowExecutionFailed– AStartChildWorkflowExecutiondecision failed. This could happen if the workflow type specified isn't registered, is deprecated, or the decision isn't properly configured. -
SignalExternalWorkflowExecutionFailed– ASignalExternalWorkflowExecutiondecision failed. This could happen if theworkflowIDspecified in the decision was incorrect. -
RequestCancelExternalWorkflowExecutionFailed– ARequestCancelExternalWorkflowExecutiondecision failed. This could happen if theworkflowIDspecified in the decision was incorrect. -
CancelWorkflowExecutionFailed– ACancelWorkflowExecutiondecision failed. This could happen if there is an unhandled decision task pending in the workflow execution. -
CompleteWorkflowExecutionFailed– ACompleteWorkflowExecutiondecision failed. This could happen if there is an unhandled decision task pending in the workflow execution. -
ContinueAsNewWorkflowExecutionFailed– AContinueAsNewWorkflowExecutiondecision failed. This could happen if there is an unhandled decision task pending in the workflow execution or the ContinueAsNewWorkflowExecution decision was not configured correctly. -
FailWorkflowExecutionFailed– AFailWorkflowExecutiondecision failed. This could happen if there is an unhandled decision task pending in the workflow execution.
You code a decision by first setting the decision type field to one of the above decision values, and then set the corresponding attributes field shown below:
-
ScheduleActivityTaskDecisionAttributes -
RequestCancelActivityTaskDecisionAttributes -
CompleteWorkflowExecutionDecisionAttributes -
FailWorkflowExecutionDecisionAttributes -
CancelWorkflowExecutionDecisionAttributes -
ContinueAsNewWorkflowExecutionDecisionAttributes -
RecordMarkerDecisionAttributes -
StartTimerDecisionAttributes -
CancelTimerDecisionAttributes -
SignalExternalWorkflowExecutionDecisionAttributes -
RequestCancelExternalWorkflowExecutionDecisionAttributes -
StartChildWorkflowExecutionDecisionAttributes
Constructors
- Decision({required DecisionType decisionType, CancelTimerDecisionAttributes? cancelTimerDecisionAttributes, CancelWorkflowExecutionDecisionAttributes? cancelWorkflowExecutionDecisionAttributes, CompleteWorkflowExecutionDecisionAttributes? completeWorkflowExecutionDecisionAttributes, ContinueAsNewWorkflowExecutionDecisionAttributes? continueAsNewWorkflowExecutionDecisionAttributes, FailWorkflowExecutionDecisionAttributes? failWorkflowExecutionDecisionAttributes, RecordMarkerDecisionAttributes? recordMarkerDecisionAttributes, RequestCancelActivityTaskDecisionAttributes? requestCancelActivityTaskDecisionAttributes, RequestCancelExternalWorkflowExecutionDecisionAttributes? requestCancelExternalWorkflowExecutionDecisionAttributes, ScheduleActivityTaskDecisionAttributes? scheduleActivityTaskDecisionAttributes, ScheduleLambdaFunctionDecisionAttributes? scheduleLambdaFunctionDecisionAttributes, SignalExternalWorkflowExecutionDecisionAttributes? signalExternalWorkflowExecutionDecisionAttributes, StartChildWorkflowExecutionDecisionAttributes? startChildWorkflowExecutionDecisionAttributes, StartTimerDecisionAttributes? startTimerDecisionAttributes})
Properties
- cancelTimerDecisionAttributes → CancelTimerDecisionAttributes?
-
Provides the details of the
CancelTimerdecision. It isn't set for other decision types.final - cancelWorkflowExecutionDecisionAttributes → CancelWorkflowExecutionDecisionAttributes?
-
Provides the details of the
CancelWorkflowExecutiondecision. It isn't set for other decision types.final - completeWorkflowExecutionDecisionAttributes → CompleteWorkflowExecutionDecisionAttributes?
-
Provides the details of the
CompleteWorkflowExecutiondecision. It isn't set for other decision types.final - continueAsNewWorkflowExecutionDecisionAttributes → ContinueAsNewWorkflowExecutionDecisionAttributes?
-
Provides the details of the
ContinueAsNewWorkflowExecutiondecision. It isn't set for other decision types.final - decisionType → DecisionType
-
Specifies the type of the decision.
final
- failWorkflowExecutionDecisionAttributes → FailWorkflowExecutionDecisionAttributes?
-
Provides the details of the
FailWorkflowExecutiondecision. It isn't set for other decision types.final - hashCode → int
-
The hash code for this object.
no setterinherited
- recordMarkerDecisionAttributes → RecordMarkerDecisionAttributes?
-
Provides the details of the
RecordMarkerdecision. It isn't set for other decision types.final - requestCancelActivityTaskDecisionAttributes → RequestCancelActivityTaskDecisionAttributes?
-
Provides the details of the
RequestCancelActivityTaskdecision. It isn't set for other decision types.final - requestCancelExternalWorkflowExecutionDecisionAttributes → RequestCancelExternalWorkflowExecutionDecisionAttributes?
-
Provides the details of the
RequestCancelExternalWorkflowExecutiondecision. It isn't set for other decision types.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- scheduleActivityTaskDecisionAttributes → ScheduleActivityTaskDecisionAttributes?
-
Provides the details of the
ScheduleActivityTaskdecision. It isn't set for other decision types.final - scheduleLambdaFunctionDecisionAttributes → ScheduleLambdaFunctionDecisionAttributes?
-
Provides the details of the
ScheduleLambdaFunctiondecision. It isn't set for other decision types.final - signalExternalWorkflowExecutionDecisionAttributes → SignalExternalWorkflowExecutionDecisionAttributes?
-
Provides the details of the
SignalExternalWorkflowExecutiondecision. It isn't set for other decision types.final - startChildWorkflowExecutionDecisionAttributes → StartChildWorkflowExecutionDecisionAttributes?
-
Provides the details of the
StartChildWorkflowExecutiondecision. It isn't set for other decision types.final - startTimerDecisionAttributes → StartTimerDecisionAttributes?
-
Provides the details of the
StartTimerdecision. It isn't set for other decision types.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited