Skip to main content

account_attributes

Creates, updates, deletes, gets or lists an account_attributes resource.

Overview

Nameaccount_attributes
TypeResource
Idaws.elasticbeanstalk.account_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_quotastringThe quota for applications in the AWS account.
application_version_quotastringThe quota for application versions in the AWS account.
configuration_template_quotastringThe quota for configuration templates in the AWS account.
custom_platform_quotastringThe quota for custom platforms in the AWS account.
environment_quotastringThe quota for environments in the AWS account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_attributesselectregionReturns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account. The result currently has one set of attributes—resource quotas.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account. The result currently has one set of attributes—resource quotas.

SELECT
application_quota,
application_version_quota,
configuration_template_quota,
custom_platform_quota,
environment_quota
FROM aws.elasticbeanstalk.account_attributes
WHERE region = '{{ region }}' -- required
;