Class: Aws::SWF::Types::TimerStartedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::TimerStartedEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘TimerStarted` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#control ⇒ String
Data attached to the event that can be used by the decider in subsequent workflow tasks.
-
#decision_task_completed_event_id ⇒ Integer
The ID of the ‘DecisionTaskCompleted` event corresponding to the decision task that resulted in the `StartTimer` decision for this activity task.
-
#start_to_fire_timeout ⇒ String
The duration of time after which the timer fires.
-
#timer_id ⇒ String
The unique ID of the timer that was started.
Instance Attribute Details
#control ⇒ String
Data attached to the event that can be used by the decider in subsequent workflow tasks.
5571 5572 5573 5574 5575 5576 5577 5578 |
# File 'lib/aws-sdk-swf/types.rb', line 5571 class TimerStartedEventAttributes < Struct.new( :timer_id, :control, :start_to_fire_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |
#decision_task_completed_event_id ⇒ Integer
The ID of the ‘DecisionTaskCompleted` event corresponding to the decision task that resulted in the `StartTimer` decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
5571 5572 5573 5574 5575 5576 5577 5578 |
# File 'lib/aws-sdk-swf/types.rb', line 5571 class TimerStartedEventAttributes < Struct.new( :timer_id, :control, :start_to_fire_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |
#start_to_fire_timeout ⇒ String
The duration of time after which the timer fires.
The duration is specified in seconds, an integer greater than or equal to ‘0`.
5571 5572 5573 5574 5575 5576 5577 5578 |
# File 'lib/aws-sdk-swf/types.rb', line 5571 class TimerStartedEventAttributes < Struct.new( :timer_id, :control, :start_to_fire_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |
#timer_id ⇒ String
The unique ID of the timer that was started.
5571 5572 5573 5574 5575 5576 5577 5578 |
# File 'lib/aws-sdk-swf/types.rb', line 5571 class TimerStartedEventAttributes < Struct.new( :timer_id, :control, :start_to_fire_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |