Skip to main content

organization_resource_collection_healths

Creates, updates, deletes, gets or lists an organization_resource_collection_healths resource.

Overview

Nameorganization_resource_collection_healths
TypeResource
Idaws.devops_guru.organization_resource_collection_healths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analyzed_resource_countinteger (int64)Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web Services CloudFormation stack.
insightobjectInformation 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_namestringThe name of the CloudFormation stack. (pattern: <code>^[a-zA-Z*]+[a-zA-Z0-9-]*$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_organization_resource_collection_healthselectregionProvides 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;