Skip to main content

anomalies

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

Overview

Nameanomalies
TypeResource
Idaws.devops_guru.anomalies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
proactive_anomalyobjectA ProactiveAnomaly object that represents the requested anomaly.
reactive_anomalyobjectA ReactiveAnomaly object that represents the requested anomaly.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_anomalyselectid, regionAccountIdReturns details about an anomaly that you specify using its ID.

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
idstringThe ID of the anomaly.
regionstringAWS region (default: us-east-1)
AccountIdstringThe ID of the member account.

SELECT examples

Returns details about an anomaly that you specify using its ID.

SELECT
proactive_anomaly,
reactive_anomaly
FROM aws.devops_guru.anomalies
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND AccountId = '{{ AccountId }}'
;