account_attributes
Creates, updates, deletes, gets or lists an account_attributes resource.
Overview
| Name | account_attributes |
| Type | Resource |
| Id | aws.rds.account_attributes |
Fields
The following fields are returned by SELECT queries:
- describe_account_attributes
| Name | Datatype | Description |
|---|---|---|
account_quota_name | string | The name of the Amazon RDS quota for this Amazon Web Services account. |
max | integer | The maximum allowed value for the quota. |
used | integer | The amount currently used toward the quota maximum. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_attributes | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_account_attributes
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
;