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.
5935 5936 5937 5938 5939 5940 5941 5942 5943 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5935 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.
5935 5936 5937 5938 5939 5940 5941 5942 5943 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5935 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.
5935 5936 5937 5938 5939 5940 5941 5942 5943 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5935 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.
5935 5936 5937 5938 5939 5940 5941 5942 5943 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5935 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.
5935 5936 5937 5938 5939 5940 5941 5942 5943 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5935 class WorkflowExecutionDetail < Struct.new( :execution_info, :execution_configuration, :open_counts, :latest_activity_task_timestamp, :latest_execution_context) SENSITIVE = [] include Aws::Structure end |