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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/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)


5538
5539
5540
5541
5542
5543
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5538

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)


5538
5539
5540
5541
5542
5543
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5538

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