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.
6316 6317 6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-swf/types.rb', line 6316 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.
6316 6317 6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-swf/types.rb', line 6316 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`.
6316 6317 6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-swf/types.rb', line 6316 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.
6316 6317 6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-swf/types.rb', line 6316 class TimerStartedEventAttributes < Struct.new( :timer_id, :control, :start_to_fire_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |