[][src]Struct rusoto_swf::WorkflowExecutionInfo

pub struct WorkflowExecutionInfo {
    pub cancel_requested: Option<bool>,
    pub close_status: Option<String>,
    pub close_timestamp: Option<f64>,
    pub execution: WorkflowExecution,
    pub execution_status: String,
    pub parent: Option<WorkflowExecution>,
    pub start_timestamp: f64,
    pub tag_list: Option<Vec<String>>,
    pub workflow_type: WorkflowType,
}

Contains information about a workflow execution.

Fields

cancel_requested: Option<bool>

Set to true if a cancellation is requested for this workflow execution.

close_status: Option<String>

If the execution status is closed then this specifies how the execution was closed:

  • COMPLETED – the execution was successfully completed.

  • CANCELED – the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.

  • TERMINATED – the execution was force terminated.

  • FAILED – the execution failed to complete.

  • TIMEDOUT – the execution did not complete in the alloted time and was automatically timed out.

  • CONTINUEDAS_NEW – the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.

close_timestamp: Option<f64>

The time when the workflow execution was closed. Set only if the execution status is CLOSED.

execution: WorkflowExecution

The workflow execution this information is about.

execution_status: String

The current status of the execution.

parent: Option<WorkflowExecution>

If this workflow execution is a child of another execution then contains the workflow execution that started this execution.

start_timestamp: f64

The time when the execution was started.

tag_list: Option<Vec<String>>

The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags.

workflow_type: WorkflowType

The type of the workflow execution.

Trait Implementations

impl Clone for WorkflowExecutionInfo[src]

impl Debug for WorkflowExecutionInfo[src]

impl Default for WorkflowExecutionInfo[src]

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

impl PartialEq<WorkflowExecutionInfo> for WorkflowExecutionInfo[src]

impl StructuralPartialEq for WorkflowExecutionInfo[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.