Class: Aws::SWF::Types::ActivityTaskTimedOutEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityTaskTimedOutEventAttributes
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ActivityTaskTimedOut
event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ String
Contains the content of the
details
parameter for the last call made by the activity toRecordActivityTaskHeartbeat
. -
#scheduled_event_id ⇒ Integer
The ID of the
ActivityTaskScheduled
event that was recorded when this activity task was scheduled. -
#started_event_id ⇒ Integer
The ID of the
ActivityTaskStarted
event recorded when this activity task was started. -
#timeout_type ⇒ String
The type of the timeout that caused this event.
Instance Attribute Details
#details ⇒ String
Contains the content of the details
parameter for the last call
made by the activity to RecordActivityTaskHeartbeat
.
316 317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 316 class ActivityTaskTimedOutEventAttributes < Struct.new( :timeout_type, :scheduled_event_id, :started_event_id, :details) SENSITIVE = [] include Aws::Structure end |
#scheduled_event_id ⇒ Integer
The ID of the ActivityTaskScheduled
event that was recorded when
this activity task was scheduled. This information can be useful for
diagnosing problems by tracing back the chain of events leading up
to this event.
316 317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 316 class ActivityTaskTimedOutEventAttributes < Struct.new( :timeout_type, :scheduled_event_id, :started_event_id, :details) SENSITIVE = [] include Aws::Structure end |
#started_event_id ⇒ Integer
The ID of the ActivityTaskStarted
event recorded when this
activity task was started. This information can be useful for
diagnosing problems by tracing back the chain of events leading up
to this event.
316 317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 316 class ActivityTaskTimedOutEventAttributes < Struct.new( :timeout_type, :scheduled_event_id, :started_event_id, :details) SENSITIVE = [] include Aws::Structure end |
#timeout_type ⇒ String
The type of the timeout that caused this event.
316 317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 316 class ActivityTaskTimedOutEventAttributes < Struct.new( :timeout_type, :scheduled_event_id, :started_event_id, :details) SENSITIVE = [] include Aws::Structure end |