{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-lambda-executor-configuration-schema.json", "title": "LambdaExecutorConfiguration", "description": "Details about the configuration for the Lambda action engine, or executor.", "type": "object", "properties": { "lambdaFunctionArn": { "allOf": [ { "$ref": "#/components/schemas/LambdaFunctionArn" }, { "description": "The ARN of the Lambda function used by the action engine." } ] } }, "required": [ "lambdaFunctionArn" ] }