Class: Aws::SWF::Types::TimerFiredEventAttributes

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#started_event_idInteger

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.

Returns:

  • (Integer)


5508
5509
5510
5511
5512
5513
# File 'lib/aws-sdk-swf/types.rb', line 5508

class TimerFiredEventAttributes < Struct.new(
  :timer_id,
  :started_event_id)
  SENSITIVE = []
  include Aws::Structure
end

#timer_idString

The unique ID of the timer that fired.

Returns:

  • (String)


5508
5509
5510
5511
5512
5513
# File 'lib/aws-sdk-swf/types.rb', line 5508

class TimerFiredEventAttributes < Struct.new(
  :timer_id,
  :started_event_id)
  SENSITIVE = []
  include Aws::Structure
end