Class: Aws::SWF::Types::ActivityTaskCancelRequestedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ActivityTaskCancelRequestedEventAttributes
- 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
-
#activity_id ⇒ String
The unique ID of the task.
-
#decision_task_completed_event_id ⇒ Integer
The ID of the
DecisionTaskCompletedevent corresponding to the decision task that resulted in theRequestCancelActivityTaskdecision for this cancellation request.
Instance Attribute Details
#activity_id ⇒ String
The unique ID of the task.
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_id ⇒ Integer
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.
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 |