[−][src]Struct rusoto_swf::WorkflowExecutionInfo
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: WorkflowExecutionThe workflow execution this information is about.
execution_status: StringThe 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: f64The 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: WorkflowTypeThe type of the workflow execution.
Trait Implementations
impl PartialEq<WorkflowExecutionInfo> for WorkflowExecutionInfo[src]
fn eq(&self, other: &WorkflowExecutionInfo) -> bool[src]
fn ne(&self, other: &WorkflowExecutionInfo) -> bool[src]
impl Default for WorkflowExecutionInfo[src]
fn default() -> WorkflowExecutionInfo[src]
impl Clone for WorkflowExecutionInfo[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self