aws.m2.list_applications
Example SQL Queries
SELECT * FROMaws.m2.list_applications;Description
Lists the applications associated with a specific Amazon Web Services account. You can provide the unique identifier of a specific runtime environment in a query parameter to see all applications associated with that environment.
Table Definition
| Column Name | Column Data Type |
|---|---|
| environment_id Input Column The unique identifier of the runtime environment that hosts this application. | VARCHAR |
| names Input Column The names of the applications. | VARCHAR[] |
Show child fields
| |
| _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_arn The Amazon Resource Name (ARN) of the application. | VARCHAR |
| application_id The unique identifier of the application. | VARCHAR |
| application_version The version of the application. | BIGINT |
| creation_time The timestamp when the application was created. | TIMESTAMP_S |
| deployment_status Indicates either an ongoing deployment or if the application has ever deployed successfully. | VARCHAR |
| description The description of the application. | VARCHAR |
| engine_type The type of the target platform for this application. | VARCHAR |
| last_start_time The timestamp when you last started the application. Null until the application runs for the first time. | TIMESTAMP_S |
| name The name of the application. | VARCHAR |
| role_arn The Amazon Resource Name (ARN) of the role associated with the application. | VARCHAR |
| status The status of the application. | VARCHAR |
| version_status Indicates the status of the latest version of the application. | VARCHAR |