aws.lambda.get_function_concurrency
Example SQL Queries
SELECT * FROMaws.lambda.get_function_concurrencyWHERE"function_name" = 'VALUE';Description
Returns details about the reserved concurrency configuration for a function. To set a concurrency limit for a function, use PutFunctionConcurrency.
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 |
| reserved_concurrent_executions The number of simultaneous executions that are reserved for the function. | BIGINT |