Class: Aws::SWF::Types::ActivityTaskCanceledEventAttributes
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SWF::Types::ActivityTaskCanceledEventAttributes
 
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ActivityTaskCanceled event.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Details of the cancellation. 
- 
  
    
      #latest_cancel_requested_event_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If set, contains the ID of the last ActivityTaskCancelRequestedevent recorded for this activity task.
- 
  
    
      #scheduled_event_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the ActivityTaskScheduledevent that was recorded when this activity task was scheduled.
- 
  
    
      #started_event_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the ActivityTaskStartedevent recorded when this activity task was started.
Instance Attribute Details
#details ⇒ String
Details of the cancellation.
| 102 103 104 105 106 107 108 109 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 102 class ActivityTaskCanceledEventAttributes < Struct.new( :details, :scheduled_event_id, :started_event_id, :latest_cancel_requested_event_id) SENSITIVE = [] include Aws::Structure end | 
#latest_cancel_requested_event_id ⇒ Integer
If set, contains the ID of the last ActivityTaskCancelRequested
event recorded for this activity task. This information can be
useful for diagnosing problems by tracing back the chain of events
leading up to this event.
| 102 103 104 105 106 107 108 109 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 102 class ActivityTaskCanceledEventAttributes < Struct.new( :details, :scheduled_event_id, :started_event_id, :latest_cancel_requested_event_id) 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.
| 102 103 104 105 106 107 108 109 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 102 class ActivityTaskCanceledEventAttributes < Struct.new( :details, :scheduled_event_id, :started_event_id, :latest_cancel_requested_event_id) 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.
| 102 103 104 105 106 107 108 109 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 102 class ActivityTaskCanceledEventAttributes < Struct.new( :details, :scheduled_event_id, :started_event_id, :latest_cancel_requested_event_id) SENSITIVE = [] include Aws::Structure end |