Skip to main content

organization_overviews

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

Overview

Nameorganization_overviews
TypeResource
Idaws.devops_guru.organization_overviews

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
proactive_insightsintegerAn integer that specifies the number of open proactive insights in your Amazon Web Services account.
reactive_insightsintegerAn integer that specifies the number of open reactive insights in your Amazon Web Services account.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;