Class: Aws::IoTEvents::Types::LambdaAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEvents::Types::LambdaAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotevents/types.rb
 
Overview
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the Lambda function that is executed.
 - 
  
    
      #payload  ⇒ Types::Payload 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
You can configure the action payload when you send a message to a Lambda function.
 
Instance Attribute Details
#function_arn ⇒ String
The ARN of the Lambda function that is executed.
      2166 2167 2168 2169 2170 2171  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2166 class LambdaAction < Struct.new( :function_arn, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#payload ⇒ Types::Payload
You can configure the action payload when you send a message to a Lambda function.
      2166 2167 2168 2169 2170 2171  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 2166 class LambdaAction < Struct.new( :function_arn, :payload) SENSITIVE = [] include Aws::Structure end  |