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.
5538 5539 5540 5541 5542 5543 |
# File 'lib/aws-sdk-swf/types.rb', line 5538 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.
5538 5539 5540 5541 5542 5543 |
# File 'lib/aws-sdk-swf/types.rb', line 5538 class TimerFiredEventAttributes < Struct.new( :timer_id, :started_event_id) SENSITIVE = [] include Aws::Structure end |