aws.lambda.list_tags
Example SQL Queries
SELECT * FROMaws.lambda.list_tagsWHERE"resource" = 'VALUE';Description
Returns a function's tags. You can also view tags with GetFunction.
Table Definition
| Column Name | Column Data Type |
|---|---|
| resource Required Input Column The function's Amazon Resource Name (ARN). Note: Lambda does not support adding tags to aliases or versions. | 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 |
| tags The function's tags. | MAP(VARCHAR, VARCHAR) |