Class: Aws::SWF::Types::WorkflowExecutionDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionDetail
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Contains details about a workflow execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_configuration ⇒ Types::WorkflowExecutionConfiguration
The configuration settings for this workflow execution including timeout values, tasklist etc.
-
#execution_info ⇒ Types::WorkflowExecutionInfo
Information about the workflow execution.
-
#latest_activity_task_timestamp ⇒ Time
The time when the last activity task was scheduled for this workflow execution.
-
#latest_execution_context ⇒ String
The latest executionContext provided by the decider for this workflow execution.
-
#open_counts ⇒ Types::WorkflowExecutionOpenCounts
The number of tasks for this workflow execution.
Instance Attribute Details
#execution_configuration ⇒ Types::WorkflowExecutionConfiguration
The configuration settings for this workflow execution including timeout values, tasklist etc.
6795 6796 6797 6798 6799 6800 6801 6802 6803 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6795 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |
#execution_info ⇒ Types::WorkflowExecutionInfo
Information about the workflow execution.
6795 6796 6797 6798 6799 6800 6801 6802 6803 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6795 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |
#latest_activity_task_timestamp ⇒ Time
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.
6795 6796 6797 6798 6799 6800 6801 6802 6803 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6795 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |
#latest_execution_context ⇒ String
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.
6795 6796 6797 6798 6799 6800 6801 6802 6803 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6795 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |
#open_counts ⇒ Types::WorkflowExecutionOpenCounts
The number of tasks for this workflow execution. This includes open and closed tasks of all types.
6795 6796 6797 6798 6799 6800 6801 6802 6803 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6795 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |