Struct rusoto_swf::WorkflowExecutionDetail [] [src]

pub struct WorkflowExecutionDetail {
    pub execution_configuration: WorkflowExecutionConfiguration,
    pub execution_info: WorkflowExecutionInfo,
    pub latest_activity_task_timestamp: Option<Timestamp>,
    pub latest_execution_context: Option<Data>,
    pub open_counts: WorkflowExecutionOpenCounts,
}

Contains details about a workflow execution.

Fields

The configuration settings for this workflow execution including timeout values, tasklist etc.

Information about the workflow execution.

The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.

The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using RespondDecisionTaskCompleted.

The number of tasks for this workflow execution. This includes open and closed tasks of all types.

Trait Implementations

impl Default for WorkflowExecutionDetail
[src]

Returns the "default value" for a type. Read more

impl Debug for WorkflowExecutionDetail
[src]

Formats the value using the given formatter.

impl Clone for WorkflowExecutionDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more