Skip to main content

feedbacks

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

Overview

Namefeedbacks
TypeResource
Idaws.devops_guru.feedbacks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
feedbackstringThe feedback provided by the customer. (VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT)
idstringThe insight feedback ID. (pattern: <code>^[\w-]*$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_feedbackselectregionReturns the most recent feedback submitted in the current Amazon Web Services account and Region.
put_feedbackreplaceregionCollects 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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

Collects customer feedback about the specified insight.

REPLACE aws.devops_guru.feedbacks
SET
InsightFeedback = '{{ InsightFeedback }}'
WHERE
region = '{{ region }}' --required;