Class: Aws::IoTEvents::Types::LambdaAction

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotevents/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

Instance Attribute Details

#function_arnString

The ARN of the Lambda function that is executed.

Returns:

  • (String)


2166
2167
2168
2169
2170
2171
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2166

class LambdaAction < Struct.new(
  :function_arn,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end

#payloadTypes::Payload

You can configure the action payload when you send a message to a Lambda function.

Returns:



2166
2167
2168
2169
2170
2171
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2166

class LambdaAction < Struct.new(
  :function_arn,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end