feedbacks
Creates, updates, deletes, gets or lists a feedbacks resource.
Overview
| Name | feedbacks |
| Type | Resource |
| Id | aws.devops_guru.feedbacks |
Fields
The following fields are returned by SELECT queries:
- describe_feedback
| Name | Datatype | Description |
|---|---|---|
feedback | string | The feedback provided by the customer. (VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT) |
id | string | The insight feedback ID. (pattern: <code>^[\w-]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_feedback | select | region | Returns the most recent feedback submitted in the current Amazon Web Services account and Region. | |
put_feedback | replace | region | Collects customer feedback about the specified insight. |
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
- describe_feedback
Returns the most recent feedback submitted in the current Amazon Web Services account and Region.
SELECT
feedback,
id
FROM aws.devops_guru.feedbacks
WHERE region = '{{ region }}' -- required
;
REPLACE examples
- put_feedback
Collects customer feedback about the specified insight.
REPLACE aws.devops_guru.feedbacks
SET
InsightFeedback = '{{ InsightFeedback }}'
WHERE
region = '{{ region }}' --required;