aws.lambda.list_provisioned_concurrency_configs
Example SQL Queries
SELECT * FROMaws.lambda.list_provisioned_concurrency_configsWHERE"function_name" = 'VALUE';Description
Retrieves a list of provisioned concurrency configurations for a function.
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 |
| allocated_provisioned_concurrent_executions The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions. | BIGINT |
| available_provisioned_concurrent_executions The amount of provisioned concurrency available. | BIGINT |
| function_arn The Amazon Resource Name (ARN) of the alias or version. | VARCHAR |
| last_modified The date and time that a user last updated the configuration, in ISO 8601 format. | VARCHAR |
| requested_provisioned_concurrent_executions The amount of provisioned concurrency requested. | BIGINT |
| status The status of the allocation process. | VARCHAR |
| status_reason For failed allocations, the reason that provisioned concurrency could not be allocated. | VARCHAR |