Class: Aws::SWF::Types::DecisionTaskStartedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DecisionTaskStartedEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘DecisionTaskStarted` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity ⇒ String
Identity of the decider making the request.
-
#scheduled_event_id ⇒ Integer
The ID of the ‘DecisionTaskScheduled` event that was recorded when this decision task was scheduled.
Instance Attribute Details
#identity ⇒ String
Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.
1940 1941 1942 1943 1944 1945 |
# File 'lib/aws-sdk-swf/types.rb', line 1940 class DecisionTaskStartedEventAttributes < Struct.new( :identity, :scheduled_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.
1940 1941 1942 1943 1944 1945 |
# File 'lib/aws-sdk-swf/types.rb', line 1940 class DecisionTaskStartedEventAttributes < Struct.new( :identity, :scheduled_event_id) SENSITIVE = [] include Aws::Structure end |