Class: Aws::SWF::Types::TimerFiredEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::TimerFiredEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘TimerFired` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#started_event_id ⇒ Integer
The ID of the ‘TimerStarted` event that was recorded when this timer was started.
-
#timer_id ⇒ String
The unique ID of the timer that fired.
Instance Attribute Details
#started_event_id ⇒ Integer
The ID of the ‘TimerStarted` event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
6283 6284 6285 6286 6287 6288 |
# File 'lib/aws-sdk-swf/types.rb', line 6283 class TimerFiredEventAttributes < Struct.new( :timer_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |
#timer_id ⇒ String
The unique ID of the timer that fired.
6283 6284 6285 6286 6287 6288 |
# File 'lib/aws-sdk-swf/types.rb', line 6283 class TimerFiredEventAttributes < Struct.new( :timer_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |