Class: Aws::SWF::Types::MarkerRecordedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::MarkerRecordedEventAttributes
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the MarkerRecorded
event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#decision_task_completed_event_id ⇒ Integer
The ID of the
DecisionTaskCompleted
event corresponding to the decision task that resulted in theRecordMarker
decision that requested this marker. -
#details ⇒ String
The details of the marker.
-
#marker_name ⇒ String
The name of the marker.
Instance Attribute Details
#decision_task_completed_event_id ⇒ Integer
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the RecordMarker
decision that
requested this marker. This information can be useful for diagnosing
problems by tracing back the chain of events leading up to this
event.
3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3323 class MarkerRecordedEventAttributes < Struct.new( :marker_name, :details, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |
#details ⇒ String
The details of the marker.
3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3323 class MarkerRecordedEventAttributes < Struct.new( :marker_name, :details, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |
#marker_name ⇒ String
The name of the marker.
3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3323 class MarkerRecordedEventAttributes < Struct.new( :marker_name, :details, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |