turbot/aws_insights

Query: lambda_functions_for_eventbridge_rule

Usage

powerpipe query aws_insights.query.lambda_functions_for_eventbridge_rule

Steampipe Tables

SQL

select
(t ->> 'Arn') :: text as function_arn
from
aws_eventbridge_rule r,
jsonb_array_elements(targets) t
where
r.arn = $1
and t ->> 'Arn' like '%lambda%';