aws.lambda.list_function_event_invoke_configs
Example SQL Queries
SELECT * FROMaws.lambda.list_function_event_invoke_configsWHERE"function_name" = 'VALUE';Description
Retrieves a list of configurations for asynchronous invocation for a function.
To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Table Definition
| Column Name | Column Data Type |
|---|---|
| function_name Required Input Column The name or ARN of the Lambda function. Name formats
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length. | 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 |
| destination_config A destination for events after they have been sent to a function for processing. Destinations
| STRUCT( |
Show child fields
| |
| function_arn The Amazon Resource Name (ARN) of the function. | VARCHAR |
| last_modified The date and time that the configuration was last updated. | TIMESTAMP_S |
| maximum_event_age_in_seconds The maximum age of a request that Lambda sends to a function for processing. | BIGINT |
| maximum_retry_attempts The maximum number of times to retry when the function returns an error. | BIGINT |