Class: Aws::SWF::Types::ActivityTaskCancelRequestedEventAttributes

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

Overview

Provides the details of the ‘ActivityTaskCancelRequested` event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#activity_idString

The unique ID of the task.

Returns:

  • (String)


68
69
70
71
72
73
# File 'lib/aws-sdk-swf/types.rb', line 68

class ActivityTaskCancelRequestedEventAttributes < Struct.new(
  :decision_task_completed_event_id,
  :activity_id)
  SENSITIVE = []
  include Aws::Structure
end

#decision_task_completed_event_idInteger

The ID of the ‘DecisionTaskCompleted` event corresponding to the decision task that resulted in the `RequestCancelActivityTask` decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Returns:

  • (Integer)


68
69
70
71
72
73
# File 'lib/aws-sdk-swf/types.rb', line 68

class ActivityTaskCancelRequestedEventAttributes < Struct.new(
  :decision_task_completed_event_id,
  :activity_id)
  SENSITIVE = []
  include Aws::Structure
end