organization_resource_collection_healths
Creates, updates, deletes, gets or lists an organization_resource_collection_healths resource.
Overview
| Name | organization_resource_collection_healths |
| Type | Resource |
| Id | aws.devops_guru.organization_resource_collection_healths |
Fields
The following fields are returned by SELECT queries:
- describe_organization_resource_collection_health
| Name | Datatype | Description |
|---|---|---|
analyzed_resource_count | integer (int64) | Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web Services CloudFormation stack. |
insight | object | Information about the health of the Amazon Web Services resources in your account that are specified by an Amazon Web Services CloudFormation stack, including the number of open proactive, open reactive insights, and the Mean Time to Recover (MTTR) of closed insights. |
stack_name | string | The name of the CloudFormation stack. (pattern: <code>^[a-zA-Z*]+[a-zA-Z0-9-]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_organization_resource_collection_health | select | region | Provides an overview of your system's health. If additional member accounts are part of your organization, you can filter those accounts using the AccountIds field. |
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_resource_collection_health
Provides an overview of your system's health. If additional member accounts are part of your organization, you can filter those accounts using the AccountIds field.
SELECT
analyzed_resource_count,
insight,
stack_name
FROM aws.devops_guru.organization_resource_collection_healths
WHERE region = '{{ region }}' -- required
;