[][src]Struct rusoto_swf::Decision

pub struct Decision {
    pub cancel_timer_decision_attributes: Option<CancelTimerDecisionAttributes>,
    pub cancel_workflow_execution_decision_attributes: Option<CancelWorkflowExecutionDecisionAttributes>,
    pub complete_workflow_execution_decision_attributes: Option<CompleteWorkflowExecutionDecisionAttributes>,
    pub continue_as_new_workflow_execution_decision_attributes: Option<ContinueAsNewWorkflowExecutionDecisionAttributes>,
    pub decision_type: String,
    pub fail_workflow_execution_decision_attributes: Option<FailWorkflowExecutionDecisionAttributes>,
    pub record_marker_decision_attributes: Option<RecordMarkerDecisionAttributes>,
    pub request_cancel_activity_task_decision_attributes: Option<RequestCancelActivityTaskDecisionAttributes>,
    pub request_cancel_external_workflow_execution_decision_attributes: Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>,
    pub schedule_activity_task_decision_attributes: Option<ScheduleActivityTaskDecisionAttributes>,
    pub schedule_lambda_function_decision_attributes: Option<ScheduleLambdaFunctionDecisionAttributes>,
    pub signal_external_workflow_execution_decision_attributes: Option<SignalExternalWorkflowExecutionDecisionAttributes>,
    pub start_child_workflow_execution_decision_attributes: Option<StartChildWorkflowExecutionDecisionAttributes>,
    pub start_timer_decision_attributes: Option<StartTimerDecisionAttributes>,
}

Specifies a decision made by the decider. A decision can be one of these types:

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 in the Amazon SWF Developer Guide.

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 OPERATIONNOTPERMITTED, 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.

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.

A workflow execution may be closed by the decider by returning one of the following decisions when completing a decision task: CompleteWorkflowExecution, FailWorkflowExecution, CancelWorkflowExecution and ContinueAsNewWorkflowExecution. An UnhandledDecision fault is 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:

Fields

cancel_timer_decision_attributes: Option<CancelTimerDecisionAttributes>

Provides the details of the CancelTimer decision. It isn't set for other decision types.

cancel_workflow_execution_decision_attributes: Option<CancelWorkflowExecutionDecisionAttributes>

Provides the details of the CancelWorkflowExecution decision. It isn't set for other decision types.

complete_workflow_execution_decision_attributes: Option<CompleteWorkflowExecutionDecisionAttributes>

Provides the details of the CompleteWorkflowExecution decision. It isn't set for other decision types.

continue_as_new_workflow_execution_decision_attributes: Option<ContinueAsNewWorkflowExecutionDecisionAttributes>

Provides the details of the ContinueAsNewWorkflowExecution decision. It isn't set for other decision types.

decision_type: String

Specifies the type of the decision.

fail_workflow_execution_decision_attributes: Option<FailWorkflowExecutionDecisionAttributes>

Provides the details of the FailWorkflowExecution decision. It isn't set for other decision types.

record_marker_decision_attributes: Option<RecordMarkerDecisionAttributes>

Provides the details of the RecordMarker decision. It isn't set for other decision types.

request_cancel_activity_task_decision_attributes: Option<RequestCancelActivityTaskDecisionAttributes>

Provides the details of the RequestCancelActivityTask decision. It isn't set for other decision types.

request_cancel_external_workflow_execution_decision_attributes: Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>

Provides the details of the RequestCancelExternalWorkflowExecution decision. It isn't set for other decision types.

schedule_activity_task_decision_attributes: Option<ScheduleActivityTaskDecisionAttributes>

Provides the details of the ScheduleActivityTask decision. It isn't set for other decision types.

schedule_lambda_function_decision_attributes: Option<ScheduleLambdaFunctionDecisionAttributes>

Provides the details of the ScheduleLambdaFunction decision. It isn't set for other decision types.

signal_external_workflow_execution_decision_attributes: Option<SignalExternalWorkflowExecutionDecisionAttributes>

Provides the details of the SignalExternalWorkflowExecution decision. It isn't set for other decision types.

start_child_workflow_execution_decision_attributes: Option<StartChildWorkflowExecutionDecisionAttributes>

Provides the details of the StartChildWorkflowExecution decision. It isn't set for other decision types.

start_timer_decision_attributes: Option<StartTimerDecisionAttributes>

Provides the details of the StartTimer decision. It isn't set for other decision types.

Trait Implementations

impl PartialEq<Decision> for Decision[src]

impl Default for Decision[src]

impl Clone for Decision[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Decision[src]

impl Serialize for Decision[src]

Auto Trait Implementations

impl Send for Decision

impl Sync for Decision

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self