Struct aws_sdk_swf::model::WorkflowExecutionInfo
source · [−]#[non_exhaustive]pub struct WorkflowExecutionInfo {
pub execution: Option<WorkflowExecution>,
pub workflow_type: Option<WorkflowType>,
pub start_timestamp: Option<DateTime>,
pub close_timestamp: Option<DateTime>,
pub execution_status: Option<ExecutionStatus>,
pub close_status: Option<CloseStatus>,
pub parent: Option<WorkflowExecution>,
pub tag_list: Option<Vec<String>>,
pub cancel_requested: bool,
}
Expand description
Contains information about a workflow execution.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution: Option<WorkflowExecution>
The workflow execution this information is about.
workflow_type: Option<WorkflowType>
The type of the workflow execution.
start_timestamp: Option<DateTime>
The time when the execution was started.
close_timestamp: Option<DateTime>
The time when the workflow execution was closed. Set only if the execution status is CLOSED.
execution_status: Option<ExecutionStatus>
The current status of the execution.
close_status: Option<CloseStatus>
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. -
TIMED_OUT
– the execution did not complete in the alloted time and was automatically timed out. -
CONTINUED_AS_NEW
– the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.
parent: Option<WorkflowExecution>
If this workflow execution is a child of another execution then contains the workflow execution that started this execution.
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.
cancel_requested: bool
Set to true if a cancellation is requested for this workflow execution.
Implementations
The workflow execution this information is about.
The type of the workflow execution.
The time when the execution was started.
The time when the workflow execution was closed. Set only if the execution status is CLOSED.
The current status of the execution.
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. -
TIMED_OUT
– the execution did not complete in the alloted time and was automatically timed out. -
CONTINUED_AS_NEW
– the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.
If this workflow execution is a child of another execution then contains the workflow execution that started this execution.
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.
Set to true if a cancellation is requested for this workflow execution.
Creates a new builder-style object to manufacture WorkflowExecutionInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for WorkflowExecutionInfo
impl Send for WorkflowExecutionInfo
impl Sync for WorkflowExecutionInfo
impl Unpin for WorkflowExecutionInfo
impl UnwindSafe for WorkflowExecutionInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more