StructuredPojo
, ToCopyableBuilder<Decision.Builder,Decision>
@Generated("software.amazon.awssdk:codegen") public class Decision extends Object implements StructuredPojo, ToCopyableBuilder<Decision.Builder,Decision>
Specifies a decision made by the decider. A decision can be one of these types:
TimerCanceled
event in the
history.WorkflowExecutionCanceled
event in the history.WorkflowExecutionCompleted
event in the history .WorkflowExecutionContinuedAsNew
event is
recorded in the history.WorkflowExecutionFailed
event in the history.MarkerRecorded
event in the history. Markers can be used for adding
custom information in the history for instance to let deciders know that they do not need to look at the history
beyond the marker event.RequestCancelExternalWorkflowExecutionInitiated
event in the history.SignalExternalWorkflowExecutionInitiated
event in the history.StartChildWorkflowExecutionInitiated
event in the history. The child workflow execution is a separate
workflow execution with its own history.TimerStarted
event in
the history. This timer will fire after the specified delay and record a TimerFired
event.Access Control
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.
Decision Failure
Decisions can fail for several reasons
One of the following events might be added to the history to indicate an error. The event attribute's 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.
workflowID
specified in the decision was incorrect.workflowID
specified in the decision was incorrect.The preceding error events might occur due to an error in the decider logic, which might put the workflow execution in an unstable state The cause field in the event structure for the error event indicates the cause of the error.
CompleteWorkflowExecution
, FailWorkflowExecution
,
CancelWorkflowExecution
and ContinueAsNewWorkflowExecution
. An UnhandledDecision fault will
be returned if a workflow closing decision is specified and a signal or activity event had been added to the history
while the decision task was being performed by the decider. Unlike the above situations which are logic issues, this
fault is always possible because of race conditions in a distributed system. The right action here is to call
RespondDecisionTaskCompleted without any decisions. This would result in another decision task with these new
events included in the history. The decider should handle the new events and may decide to close the workflow
execution.How to code a decision
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:
Modifier and Type | Class | Description |
---|---|---|
static interface |
Decision.Builder |
public String decisionType()
Specifies the type of the decision.
DecisionType
public ScheduleActivityTaskDecisionAttributes scheduleActivityTaskDecisionAttributes()
Provides details of the ScheduleActivityTask
decision. It is not set for other decision types.
ScheduleActivityTask
decision. It is not set for other decision
types.public RequestCancelActivityTaskDecisionAttributes requestCancelActivityTaskDecisionAttributes()
Provides details of the RequestCancelActivityTask
decision. It is not set for other decision types.
RequestCancelActivityTask
decision. It is not set for other decision
types.public CompleteWorkflowExecutionDecisionAttributes completeWorkflowExecutionDecisionAttributes()
Provides details of the CompleteWorkflowExecution
decision. It is not set for other decision types.
CompleteWorkflowExecution
decision. It is not set for other decision
types.public FailWorkflowExecutionDecisionAttributes failWorkflowExecutionDecisionAttributes()
Provides details of the FailWorkflowExecution
decision. It is not set for other decision types.
FailWorkflowExecution
decision. It is not set for other decision
types.public CancelWorkflowExecutionDecisionAttributes cancelWorkflowExecutionDecisionAttributes()
Provides details of the CancelWorkflowExecution
decision. It is not set for other decision types.
CancelWorkflowExecution
decision. It is not set for other decision
types.public ContinueAsNewWorkflowExecutionDecisionAttributes continueAsNewWorkflowExecutionDecisionAttributes()
Provides details of the ContinueAsNewWorkflowExecution
decision. It is not set for other decision
types.
ContinueAsNewWorkflowExecution
decision. It is not set for other
decision types.public RecordMarkerDecisionAttributes recordMarkerDecisionAttributes()
Provides details of the RecordMarker
decision. It is not set for other decision types.
RecordMarker
decision. It is not set for other decision types.public StartTimerDecisionAttributes startTimerDecisionAttributes()
Provides details of the StartTimer
decision. It is not set for other decision types.
StartTimer
decision. It is not set for other decision types.public CancelTimerDecisionAttributes cancelTimerDecisionAttributes()
Provides details of the CancelTimer
decision. It is not set for other decision types.
CancelTimer
decision. It is not set for other decision types.public SignalExternalWorkflowExecutionDecisionAttributes signalExternalWorkflowExecutionDecisionAttributes()
Provides details of the SignalExternalWorkflowExecution
decision. It is not set for other decision
types.
SignalExternalWorkflowExecution
decision. It is not set for other
decision types.public RequestCancelExternalWorkflowExecutionDecisionAttributes requestCancelExternalWorkflowExecutionDecisionAttributes()
Provides details of the RequestCancelExternalWorkflowExecution
decision. It is not set for other
decision types.
RequestCancelExternalWorkflowExecution
decision. It is not set for
other decision types.public StartChildWorkflowExecutionDecisionAttributes startChildWorkflowExecutionDecisionAttributes()
Provides details of the StartChildWorkflowExecution
decision. It is not set for other decision
types.
StartChildWorkflowExecution
decision. It is not set for other
decision types.public ScheduleLambdaFunctionDecisionAttributes scheduleLambdaFunctionDecisionAttributes()
public Decision.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<Decision.Builder,Decision>
public static Decision.Builder builder()
public static Class<? extends Decision.Builder> serializableBuilderClass()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.