Skip to main content

account_attributes

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

Overview

Nameaccount_attributes
TypeResource
Idaws.rds.account_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_quota_namestringThe name of the Amazon RDS quota for this Amazon Web Services account.
maxintegerThe maximum allowed value for the quota.
usedintegerThe amount currently used toward the quota maximum.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_attributesselectregionLists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This command doesn't take any parameters.

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

Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This command doesn't take any parameters.

SELECT
account_quota_name,
max,
used
FROM aws.rds.account_attributes
WHERE region = '{{ region }}' -- required
;