aws.lambda.get_function_recursion_config
Example SQL Queries
SELECT * FROMaws.lambda.get_function_recursion_configWHERE"function_name" = 'VALUE';Description
Returns your function's recursive loop detection configuration.
Table Definition
| Column Name | Column Data Type |
|---|---|
| function_name Required Input Column | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| recursive_loop If your function's recursive loop detection configuration is Allow, Lambda doesn't take any action when it detects your function being invoked as part of a recursive loop. If your function's recursive loop detection configuration is Terminate, Lambda stops your function being invoked and notifies you when it detects your function being invoked as part of a recursive loop. By default, Lambda sets your function's configuration to Terminate. You can update this configuration using the PutFunctionRecursionConfig action. | VARCHAR |