Class: Aws::CodePipeline::Types::LambdaExecutorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::LambdaExecutorConfiguration
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Note:
When making an API call, you may pass LambdaExecutorConfiguration data as a hash:
{
lambda_function_arn: "LambdaFunctionArn", # required
}
Details about the configuration for the Lambda
action engine, or
executor.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_function_arn ⇒ String
The ARN of the Lambda function used by the action engine.
Instance Attribute Details
#lambda_function_arn ⇒ String
The ARN of the Lambda function used by the action engine.
2789 2790 2791 2792 2793 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2789 class LambdaExecutorConfiguration < Struct.new( :lambda_function_arn) SENSITIVE = [] include Aws::Structure end |