organization_healths
Creates, updates, deletes, gets or lists an organization_healths resource.
Overview
| Name | organization_healths |
| Type | Resource |
| Id | aws.devops_guru.organization_healths |
Fields
The following fields are returned by SELECT queries:
- describe_organization_health
| Name | Datatype | Description |
|---|---|---|
metrics_analyzed | integer | An integer that specifies the number of metrics that have been analyzed in your organization. |
open_proactive_insights | integer | An integer that specifies the number of open proactive insights in your Amazon Web Services account. |
open_reactive_insights | integer | An integer that specifies the number of open reactive insights in your Amazon Web Services account. |
resource_hours | integer (int64) | The number of Amazon DevOps Guru resource analysis hours billed to the current Amazon Web Services account in the last hour. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_organization_health | select | region | Returns active insights, predictive insights, and resource hours analyzed in last hour. |
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_health
Returns active insights, predictive insights, and resource hours analyzed in last hour.
SELECT
metrics_analyzed,
open_proactive_insights,
open_reactive_insights,
resource_hours
FROM aws.devops_guru.organization_healths
WHERE region = '{{ region }}' -- required
;