Class: Aws::SWF::Types::ActivityTaskStartedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityTaskStartedEventAttributes
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ActivityTaskStarted event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity ⇒ String
Identity of the worker that was assigned this task.
-
#scheduled_event_id ⇒ Integer
The ID of the
ActivityTaskScheduledevent that was recorded when this activity task was scheduled.
Instance Attribute Details
#identity ⇒ String
Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.
272 273 274 275 276 277 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 272 class ActivityTaskStartedEventAttributes < Struct.new( :identity, :scheduled_event_id) SENSITIVE = [] include Aws::Structure end |
#scheduled_event_id ⇒ Integer
The ID of the ActivityTaskScheduled event that was recorded when
this activity task was scheduled. This information can be useful for
diagnosing problems by tracing back the chain of events leading up
to this event.
272 273 274 275 276 277 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 272 class ActivityTaskStartedEventAttributes < Struct.new( :identity, :scheduled_event_id) SENSITIVE = [] include Aws::Structure end |