Class: Aws::SWF::Types::WorkflowExecutionOpenCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionOpenCounts
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Contains the counts of open tasks, child workflow executions and timers for a workflow execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#open_activity_tasks ⇒ Integer
The count of activity tasks whose status is ‘OPEN`.
-
#open_child_workflow_executions ⇒ Integer
The count of child workflow executions whose status is ‘OPEN`.
-
#open_decision_tasks ⇒ Integer
The count of decision tasks whose status is OPEN.
-
#open_lambda_functions ⇒ Integer
The count of Lambda tasks whose status is ‘OPEN`.
-
#open_timers ⇒ Integer
The count of timers started by this workflow execution that have not fired yet.
Instance Attribute Details
#open_activity_tasks ⇒ Integer
The count of activity tasks whose status is ‘OPEN`.
6189 6190 6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-swf/types.rb', line 6189 class WorkflowExecutionOpenCounts < Struct.new( :open_activity_tasks, :open_decision_tasks, :open_timers, :open_child_workflow_executions, :open_lambda_functions) SENSITIVE = [] include Aws::Structure end |
#open_child_workflow_executions ⇒ Integer
The count of child workflow executions whose status is ‘OPEN`.
6189 6190 6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-swf/types.rb', line 6189 class WorkflowExecutionOpenCounts < Struct.new( :open_activity_tasks, :open_decision_tasks, :open_timers, :open_child_workflow_executions, :open_lambda_functions) SENSITIVE = [] include Aws::Structure end |
#open_decision_tasks ⇒ Integer
The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
6189 6190 6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-swf/types.rb', line 6189 class WorkflowExecutionOpenCounts < Struct.new( :open_activity_tasks, :open_decision_tasks, :open_timers, :open_child_workflow_executions, :open_lambda_functions) SENSITIVE = [] include Aws::Structure end |
#open_lambda_functions ⇒ Integer
The count of Lambda tasks whose status is ‘OPEN`.
6189 6190 6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-swf/types.rb', line 6189 class WorkflowExecutionOpenCounts < Struct.new( :open_activity_tasks, :open_decision_tasks, :open_timers, :open_child_workflow_executions, :open_lambda_functions) SENSITIVE = [] include Aws::Structure end |
#open_timers ⇒ Integer
The count of timers started by this workflow execution that have not fired yet.
6189 6190 6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-swf/types.rb', line 6189 class WorkflowExecutionOpenCounts < Struct.new( :open_activity_tasks, :open_decision_tasks, :open_timers, :open_child_workflow_executions, :open_lambda_functions) SENSITIVE = [] include Aws::Structure end |