[][src]Struct rusoto_swf::DecisionTask

pub struct DecisionTask {
    pub events: Vec<HistoryEvent>,
    pub next_page_token: Option<String>,
    pub previous_started_event_id: Option<i64>,
    pub started_event_id: i64,
    pub task_token: String,
    pub workflow_execution: WorkflowExecution,
    pub workflow_type: WorkflowType,
}

A structure that represents a decision task. Decision tasks are sent to deciders in order for them to make decisions.

Fields

events: Vec<HistoryEvent>

A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.

next_page_token: Option<String>

If a NextPageToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken. Keep all other arguments unchanged.

The configured maximumPageSize determines how many results can be returned in a single call.

previous_started_event_id: Option<i64>

The ID of the DecisionTaskStarted event of the previous decision task of this workflow execution that was processed by the decider. This can be used to determine the events in the history new since the last decision task received by the decider.

started_event_id: i64

The ID of the DecisionTaskStarted event recorded in the history.

task_token: String

The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.

workflow_execution: WorkflowExecution

The workflow execution for which this decision task was created.

workflow_type: WorkflowType

The type of the workflow execution for which this decision task was created.

Trait Implementations

impl Clone for DecisionTask[src]

impl Debug for DecisionTask[src]

impl Default for DecisionTask[src]

impl<'de> Deserialize<'de> for DecisionTask[src]

impl PartialEq<DecisionTask> for DecisionTask[src]

impl StructuralPartialEq for DecisionTask[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.