account_summaries
Creates, updates, deletes, gets or lists an account_summaries resource.
Overview
| Name | account_summaries |
| Type | Resource |
| Id | aws.iam.account_summaries |
Fields
The following fields are returned by SELECT queries:
- get_account_summary
| Name | Datatype | Description |
|---|---|---|
summary_map | string | A set of key–value pairs containing information about IAM entity usage and IAM quotas. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_account_summary | select | region | Retrieves information about IAM entity usage and IAM quotas in the Amazon Web Services account. For information about IAM quotas, see IAM and STS quotas in the IAM User Guide. |
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
- get_account_summary
Retrieves information about IAM entity usage and IAM quotas in the Amazon Web Services account. For information about IAM quotas, see IAM and STS quotas in the IAM User Guide.
SELECT
summary_map
FROM aws.iam.account_summaries
WHERE region = '{{ region }}' -- required
;