account_overviews
Creates, updates, deletes, gets or lists an account_overviews resource.
Overview
| Name | account_overviews |
| Type | Resource |
| Id | aws.devops_guru.account_overviews |
Fields
The following fields are returned by SELECT queries:
- describe_account_overview
| Name | Datatype | Description |
|---|---|---|
mean_time_to_recover_in_milliseconds | integer (int64) | The Mean Time to Recover (MTTR) for all closed insights that were created during the time range passed in. |
proactive_insights | integer | An integer that specifies the number of open proactive insights in your Amazon Web Services account that were created during the time range passed in. |
reactive_insights | integer | An integer that specifies the number of open reactive insights in your Amazon Web Services account that were created during the time range passed in. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_overview | select | region | For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights. |
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_overview
For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.
SELECT
mean_time_to_recover_in_milliseconds,
proactive_insights,
reactive_insights
FROM aws.devops_guru.account_overviews
WHERE region = '{{ region }}' -- required
;