Get Feedback
lookoutmetrics_get_feedback | R Documentation |
Get feedback for an anomaly group¶
Description¶
Get feedback for an anomaly group.
Usage¶
lookoutmetrics_get_feedback(AnomalyDetectorArn,
AnomalyGroupTimeSeriesFeedback, MaxResults, NextToken)
Arguments¶
AnomalyDetectorArn |
[required] The Amazon Resource Name (ARN) of the anomaly detector. |
AnomalyGroupTimeSeriesFeedback |
[required] The anomalous metric and group ID. |
MaxResults |
The maximum number of results to return. |
NextToken |
Specify the pagination token that's returned by a previous request to retrieve the next page of results. |
Value¶
A list with the following syntax:
list(
AnomalyGroupTimeSeriesFeedback = list(
list(
TimeSeriesId = "string",
IsAnomaly = TRUE|FALSE
)
),
NextToken = "string"
)
Request syntax¶
svc$get_feedback(
AnomalyDetectorArn = "string",
AnomalyGroupTimeSeriesFeedback = list(
AnomalyGroupId = "string",
TimeSeriesId = "string"
),
MaxResults = 123,
NextToken = "string"
)