Struct rusoto_swf::WorkflowExecutionOpenCounts [] [src]

pub struct WorkflowExecutionOpenCounts {
    pub open_activity_tasks: i64,
    pub open_child_workflow_executions: i64,
    pub open_decision_tasks: i64,
    pub open_lambda_functions: Option<i64>,
    pub open_timers: i64,
}

Contains the counts of open tasks, child workflow executions and timers for a workflow execution.

Fields

The count of activity tasks whose status is OPEN.

The count of child workflow executions whose status is OPEN.

The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.

The count of AWS Lambda functions that are currently executing.

The count of timers started by this workflow execution that have not fired yet.

Trait Implementations

impl Default for WorkflowExecutionOpenCounts
[src]

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

impl Debug for WorkflowExecutionOpenCounts
[src]

Formats the value using the given formatter.

impl Clone for WorkflowExecutionOpenCounts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more