organization_overviews
Creates, updates, deletes, gets or lists an organization_overviews resource.
Overview
| Name | organization_overviews |
| Type | Resource |
| Id | aws.devops_guru.organization_overviews |
Fields
The following fields are returned by SELECT queries:
- describe_organization_overview
| Name | Datatype | Description |
|---|---|---|
proactive_insights | integer | An integer that specifies the number of open proactive insights in your Amazon Web Services account. |
reactive_insights | integer | An integer that specifies the number of open reactive insights in your Amazon Web Services account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_organization_overview | select | region | Returns an overview of your organization's history based on the specified time range. The overview includes the total reactive and proactive 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_organization_overview
Returns an overview of your organization's history based on the specified time range. The overview includes the total reactive and proactive insights.
SELECT
proactive_insights,
reactive_insights
FROM aws.devops_guru.organization_overviews
WHERE region = '{{ region }}' -- required
;