Skip to content

aws.elasticbeanstalk.describe_applications

Example SQL Queries

SELECT * FROM
aws.elasticbeanstalk.describe_applications;

Description

Returns the descriptions of existing applications.

Table Definition

Column NameColumn Data Type
application_names Input Column

If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names.

VARCHAR[]
Show child fields
application_names[]
_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(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
applications

This parameter contains a list of ApplicationDescription.

STRUCT(
"application_arn" VARCHAR,
"application_name" VARCHAR,
"description" VARCHAR,
"date_created" TIMESTAMP_S,
"date_updated" TIMESTAMP_S,
"versions" VARCHAR[],
"configuration_templates" VARCHAR[],
"resource_lifecycle_config" STRUCT(
"service_role" VARCHAR,
"version_lifecycle_config" STRUCT(
"max_count_rule" STRUCT(
"enabled" BOOLEAN,
"max_count" BIGINT,
"delete_source_from_s3" BOOLEAN
),
"max_age_rule" STRUCT(
"enabled" BOOLEAN,
"max_age_in_days" BIGINT,
"delete_source_from_s3" BOOLEAN
)
)
)
)[]
Show child fields
applications[]
Show child fields
applications[].application_arn

The Amazon Resource Name (ARN) of the application.

applications[].application_name

The name of the application.

applications[].configuration_templates[]
applications[].date_created

The date when the application was created.

applications[].date_updated

The date when the application was last modified.

applications[].description

User-defined description of the application.

applications[].resource_lifecycle_config

The lifecycle settings for the application.

Show child fields
applications[].resource_lifecycle_config.service_role

The ARN of an IAM service role that Elastic Beanstalk has permission to assume.

The ServiceRole property is required the first time that you provide a VersionLifecycleConfig for the application in one of the supporting calls (CreateApplication or UpdateApplicationResourceLifecycle). After you provide it once, in either one of the calls, Elastic Beanstalk persists the Service Role with the application, and you don't need to specify it again in subsequent UpdateApplicationResourceLifecycle calls. You can, however, specify it in subsequent calls to change the Service Role to another value.

applications[].resource_lifecycle_config.version_lifecycle_config

Defines lifecycle settings for application versions.

Show child fields
applications[].resource_lifecycle_config.version_lifecycle_config.max_age_rule

Specify a max age rule to restrict the length of time that application versions are retained for an application.

Show child fields
applications[].resource_lifecycle_config.version_lifecycle_config.max_age_rule.delete_source_from_s3

Set to true to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the application version.

applications[].resource_lifecycle_config.version_lifecycle_config.max_age_rule.enabled

Specify true to apply the rule, or false to disable it.

applications[].resource_lifecycle_config.version_lifecycle_config.max_age_rule.max_age_in_days

Specify the number of days to retain an application versions.

applications[].resource_lifecycle_config.version_lifecycle_config.max_count_rule

Specify a max count rule to restrict the number of application versions that are retained for an application.

Show child fields
applications[].resource_lifecycle_config.version_lifecycle_config.max_count_rule.delete_source_from_s3

Set to true to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the application version.

applications[].resource_lifecycle_config.version_lifecycle_config.max_count_rule.enabled

Specify true to apply the rule, or false to disable it.

applications[].resource_lifecycle_config.version_lifecycle_config.max_count_rule.max_count

Specify the maximum number of application versions to retain.

applications[].versions[]