aws.lambda.list_layer_versions
Example SQL Queries
SELECT * FROMaws.lambda.list_layer_versionsWHERE"layer_name" = 'VALUE';Description
Lists the versions of an Lambda layer. Versions that have been deleted aren't listed. Specify a runtime identifier to list only versions that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layer versions that are compatible with that architecture.
Table Definition
| Column Name | Column Data Type |
|---|---|
| layer_name Required Input Column The name or Amazon Resource Name (ARN) of the layer. | VARCHAR |
| compatible_architecture Input Column The compatible instruction set architecture. | VARCHAR |
| compatible_runtime Input Column A runtime identifier. The following list includes deprecated runtimes. For more information, see Runtime use after deprecation. For a list of all currently supported runtimes, see Supported runtimes. | 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 |
| compatible_architectures A list of compatible instruction set architectures. | VARCHAR[] |
Show child fields
| |
| compatible_runtimes The layer's compatible runtimes. The following list includes deprecated runtimes. For more information, see Runtime use after deprecation. For a list of all currently supported runtimes, see Supported runtimes. | VARCHAR[] |
Show child fields
| |
| created_date The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000. | VARCHAR |
| description The description of the version. | VARCHAR |
| layer_version_arn The ARN of the layer version. | VARCHAR |
| license_info The layer's open-source license. | VARCHAR |
| version The version number. | BIGINT |