recommendations
Creates, updates, deletes, gets or lists a recommendations resource.
Overview
| Name | recommendations |
| Type | Resource |
| Id | aws.devops_guru.recommendations |
Fields
The following fields are returned by SELECT queries:
- list_recommendations
| Name | Datatype | Description |
|---|---|---|
category | string | The category type of the recommendation. |
description | string | A description of the problem. |
link | string | A hyperlink to information to help you address the problem. |
name | string | The name of the recommendation. |
reason | string | The reason DevOps Guru flagged the anomalous behavior as a problem. |
related_anomalies | array | Anomalies that are related to the problem. Use these Anomalies to learn more about what's happening and to help address the issue. |
related_events | array | Events that are related to the problem. Use these events to learn more about what's happening and to help address the issue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_recommendations | select | region | Returns a list of a specified insight's recommendations. Each recommendation includes a list of related metrics and a list of related events. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_recommendations
Returns a list of a specified insight's recommendations. Each recommendation includes a list of related metrics and a list of related events.
SELECT
category,
description,
link,
name,
reason,
related_anomalies,
related_events
FROM aws.devops_guru.recommendations
WHERE region = '{{ region }}' -- required
;