Skip to main content

telemetry_evaluation_status_for_organizations

Creates, updates, deletes, gets or lists a telemetry_evaluation_status_for_organizations resource.

Overview

Nametelemetry_evaluation_status_for_organizations
TypeResource
Idaws.observabilityadmin.telemetry_evaluation_status_for_organizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
failure_reasonstringThis field describes the reason for the failure status. The field will only be populated if Status is FAILED_START or FAILED_STOP.
home_regionstringThe Amazon Web Services Region that is designated as the home region for multi-region telemetry evaluation for the organization. The home region is the single management point for all multi-region operations on this organization. This field is only present when multi-region telemetry evaluation is active.
region_statusesarrayA list of per-region telemetry evaluation statuses for the organization. Each entry indicates the evaluation status for a specific spoke region included in the multi-region configuration. This field is only present when multi-region telemetry evaluation is active.
statusstringThe onboarding status of the telemetry config feature for the organization. (NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_telemetry_evaluation_status_for_organizationselectregionThis returns the onboarding status of the telemetry configuration feature for the organization. It can only be called by a Management Account of an Amazon Web Services Organization or an assigned Delegated Admin Account of Amazon CloudWatch telemetry config.

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

This returns the onboarding status of the telemetry configuration feature for the organization. It can only be called by a Management Account of an Amazon Web Services Organization or an assigned Delegated Admin Account of Amazon CloudWatch telemetry config.

SELECT
failure_reason,
home_region,
region_statuses,
status
FROM aws.observabilityadmin.telemetry_evaluation_status_for_organizations
WHERE region = '{{ region }}' -- required
;