Class: Aws::SWF::Types::MarkerRecordedEventAttributes

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-swf/types.rb

Overview

Provides the details of the ‘MarkerRecorded` event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#decision_task_completed_event_idInteger

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.

Returns:

  • (Integer)


3293
3294
3295
3296
3297
3298
3299
# File 'lib/aws-sdk-swf/types.rb', line 3293

class MarkerRecordedEventAttributes < Struct.new(
  :marker_name,
  :details,
  :decision_task_completed_event_id)
  SENSITIVE = []
  include Aws::Structure
end

#detailsString

The details of the marker.

Returns:

  • (String)


3293
3294
3295
3296
3297
3298
3299
# File 'lib/aws-sdk-swf/types.rb', line 3293

class MarkerRecordedEventAttributes < Struct.new(
  :marker_name,
  :details,
  :decision_task_completed_event_id)
  SENSITIVE = []
  include Aws::Structure
end

#marker_nameString

The name of the marker.

Returns:

  • (String)


3293
3294
3295
3296
3297
3298
3299
# File 'lib/aws-sdk-swf/types.rb', line 3293

class MarkerRecordedEventAttributes < Struct.new(
  :marker_name,
  :details,
  :decision_task_completed_event_id)
  SENSITIVE = []
  include Aws::Structure
end