List Anomaly Group Summaries
lookoutmetrics_list_anomaly_group_summaries | R Documentation |
Returns a list of anomaly groups¶
Description¶
Returns a list of anomaly groups.
Usage¶
lookoutmetrics_list_anomaly_group_summaries(AnomalyDetectorArn,
SensitivityThreshold, MaxResults, NextToken)
Arguments¶
AnomalyDetectorArn
[required] The Amazon Resource Name (ARN) of the anomaly detector.
SensitivityThreshold
[required] The minimum severity score for inclusion in the output.
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(
AnomalyGroupSummaryList = list(
list(
StartTime = "string",
EndTime = "string",
AnomalyGroupId = "string",
AnomalyGroupScore = 123.0,
PrimaryMetricName = "string"
)
),
AnomalyGroupStatistics = list(
EvaluationStartDate = "string",
TotalCount = 123,
ItemizedMetricStatsList = list(
list(
MetricName = "string",
OccurrenceCount = 123
)
)
),
NextToken = "string"
)