Class: Aws::SWF::Types::DecisionTaskCompletedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DecisionTaskCompletedEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘DecisionTaskCompleted` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_context ⇒ String
User defined context for the workflow execution.
-
#scheduled_event_id ⇒ Integer
The ID of the ‘DecisionTaskScheduled` event that was recorded when this decision task was scheduled.
-
#started_event_id ⇒ Integer
The ID of the ‘DecisionTaskStarted` event recorded when this decision task was started.
Instance Attribute Details
#execution_context ⇒ String
User defined context for the workflow execution.
1881 1882 1883 1884 1885 1886 1887 |
# File 'lib/aws-sdk-swf/types.rb', line 1881 class DecisionTaskCompletedEventAttributes < Struct.new( :execution_context, :scheduled_event_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |
#scheduled_event_id ⇒ Integer
The ID of the ‘DecisionTaskScheduled` event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
1881 1882 1883 1884 1885 1886 1887 |
# File 'lib/aws-sdk-swf/types.rb', line 1881 class DecisionTaskCompletedEventAttributes < Struct.new( :execution_context, :scheduled_event_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |
#started_event_id ⇒ Integer
The ID of the ‘DecisionTaskStarted` event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
1881 1882 1883 1884 1885 1886 1887 |
# File 'lib/aws-sdk-swf/types.rb', line 1881 class DecisionTaskCompletedEventAttributes < Struct.new( :execution_context, :scheduled_event_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |