anomalies
Creates, updates, deletes, gets or lists an anomalies resource.
Overview
| Name | anomalies |
| Type | Resource |
| Id | aws.devops_guru.anomalies |
Fields
The following fields are returned by SELECT queries:
- describe_anomaly
| Name | Datatype | Description |
|---|---|---|
proactive_anomaly | object | A ProactiveAnomaly object that represents the requested anomaly. |
reactive_anomaly | object | A ReactiveAnomaly object that represents the requested anomaly. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_anomaly | select | id, region | AccountId | Returns 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.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the anomaly. |
region | string | AWS region (default: us-east-1) |
AccountId | string | The ID of the member account. |
SELECT examples
- describe_anomaly
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 }}'
;