Class: Aws::IoT::Types::LambdaAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::LambdaAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass LambdaAction data as a hash:
{
function_arn: "FunctionArn", # required
}
Describes an action to invoke a Lambda function.
Instance Attribute Summary collapse
-
#function_arn ⇒ String
The ARN of the Lambda function.
Instance Attribute Details
#function_arn ⇒ String
The ARN of the Lambda function.
5872 5873 5874 5875 |
# File 'lib/aws-sdk-iot/types.rb', line 5872 class LambdaAction < Struct.new( :function_arn) include Aws::Structure end |