Class: Aws::SWF::Types::LambdaFunctionScheduledEventAttributes
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SWF::Types::LambdaFunctionScheduledEventAttributes
 
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the LambdaFunctionScheduled event. It isn't
set for other event types.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #control  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Data attached to the event that the decider can use in subsequent workflow tasks. 
- 
  
    
      #decision_task_completed_event_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the LambdaFunctionCompletedevent corresponding to the decision that resulted in scheduling this activity task.
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique ID of the Lambda task. 
- 
  
    
      #input  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The input provided to the Lambda task. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the Lambda function. 
- 
  
    
      #start_to_close_timeout  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum amount of time a worker can take to process the Lambda task. 
Instance Attribute Details
#control ⇒ String
Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end | 
#decision_task_completed_event_id ⇒ Integer
The ID of the LambdaFunctionCompleted event corresponding to the
decision that resulted in scheduling this activity task. To help
diagnose issues, use this information to trace back the chain of
events leading up to this event.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end | 
#id ⇒ String
The unique ID of the Lambda task.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end | 
#input ⇒ String
The input provided to the Lambda task.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the Lambda function.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end | 
#start_to_close_timeout ⇒ String
The maximum amount of time a worker can take to process the Lambda task.
| 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | # File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2894 class LambdaFunctionScheduledEventAttributes < Struct.new( :id, :name, :control, :input, :start_to_close_timeout, :decision_task_completed_event_id) SENSITIVE = [] include Aws::Structure end |