aws.lambda.get_runtime_management_config
Example SQL Queries
SELECT * FROMaws.lambda.get_runtime_management_configWHERE"function_name" = 'VALUE';Description
Retrieves the runtime management configuration for a function's version. If the runtime update mode is Manual, this includes the ARN of the runtime version and the runtime update mode. If the runtime update mode is Auto or Function update, this includes the runtime update mode and null is returned for the ARN. For more information, see Runtime updates.
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 |
| qualifier Input Column Specify a version of the function. This can be $LATEST or a published version number. If no value is specified, the configuration for the $LATEST version is returned. | 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 |
| function_arn The Amazon Resource Name (ARN) of your function. | VARCHAR |
| runtime_version_arn The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise null is returned. | VARCHAR |
| update_runtime_on The current runtime update mode of the function. | VARCHAR |