[][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:

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 PartialEq<WorkflowExecutionInfo> for WorkflowExecutionInfo[src]

impl Default for WorkflowExecutionInfo[src]

impl Clone for WorkflowExecutionInfo[src]

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

Performs copy-assignment from source. Read more

impl Debug for WorkflowExecutionInfo[src]

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

Auto Trait Implementations

impl Send for WorkflowExecutionInfo

impl Sync for WorkflowExecutionInfo

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self