| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SWF.Types.WorkflowExecutionOpenCounts
Description
Synopsis
- data WorkflowExecutionOpenCounts = WorkflowExecutionOpenCounts' {}
- newWorkflowExecutionOpenCounts :: Natural -> Natural -> Natural -> Natural -> WorkflowExecutionOpenCounts
- workflowExecutionOpenCounts_openLambdaFunctions :: Lens' WorkflowExecutionOpenCounts (Maybe Natural)
- workflowExecutionOpenCounts_openActivityTasks :: Lens' WorkflowExecutionOpenCounts Natural
- workflowExecutionOpenCounts_openDecisionTasks :: Lens' WorkflowExecutionOpenCounts Natural
- workflowExecutionOpenCounts_openTimers :: Lens' WorkflowExecutionOpenCounts Natural
- workflowExecutionOpenCounts_openChildWorkflowExecutions :: Lens' WorkflowExecutionOpenCounts Natural
Documentation
data WorkflowExecutionOpenCounts Source #
Contains the counts of open tasks, child workflow executions and timers for a workflow execution.
See: newWorkflowExecutionOpenCounts smart constructor.
Constructors
| WorkflowExecutionOpenCounts' | |
Fields
| |
Instances
newWorkflowExecutionOpenCounts Source #
Arguments
| :: Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural |
|
| -> WorkflowExecutionOpenCounts |
Create a value of WorkflowExecutionOpenCounts with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:openLambdaFunctions:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openLambdaFunctions - The count of Lambda tasks whose status is OPEN.
$sel:openActivityTasks:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openActivityTasks - The count of activity tasks whose status is OPEN.
$sel:openDecisionTasks:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openDecisionTasks - The count of decision tasks whose status is OPEN. A workflow execution
can have at most one open decision task.
$sel:openTimers:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openTimers - The count of timers started by this workflow execution that have not
fired yet.
$sel:openChildWorkflowExecutions:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openChildWorkflowExecutions - The count of child workflow executions whose status is OPEN.
workflowExecutionOpenCounts_openLambdaFunctions :: Lens' WorkflowExecutionOpenCounts (Maybe Natural) Source #
The count of Lambda tasks whose status is OPEN.
workflowExecutionOpenCounts_openActivityTasks :: Lens' WorkflowExecutionOpenCounts Natural Source #
The count of activity tasks whose status is OPEN.
workflowExecutionOpenCounts_openDecisionTasks :: Lens' WorkflowExecutionOpenCounts Natural Source #
The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
workflowExecutionOpenCounts_openTimers :: Lens' WorkflowExecutionOpenCounts Natural Source #
The count of timers started by this workflow execution that have not fired yet.
workflowExecutionOpenCounts_openChildWorkflowExecutions :: Lens' WorkflowExecutionOpenCounts Natural Source #
The count of child workflow executions whose status is OPEN.