aws.m2.list_deployments
Example SQL Queries
SELECT * FROMaws.m2.list_deploymentsWHERE"application_id" = 'VALUE';Description
Returns a list of all deployments of a specific application. A deployment is a combination of a specific application and a specific version of that application. Each deployment is mapped to a particular application version.
Table Definition
| Column Name | Column Data Type |
|---|---|
| application_id Required Input Column The unique identifier of the application. | 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 |
| application_version The version of the application. | BIGINT |
| creation_time The timestamp when the deployment was created. | TIMESTAMP_S |
| deployment_id The unique identifier of the deployment. | VARCHAR |
| environment_id The unique identifier of the runtime environment. | VARCHAR |
| status The current status of the deployment. | VARCHAR |
| status_reason The reason for the reported status. | VARCHAR |