Get Anomalies
costexplorer_get_anomalies | R Documentation |
Retrieves all of the cost anomalies detected on your account during the time period that's specified by the DateInterval object¶
Description¶
Retrieves all of the cost anomalies detected on your account during the
time period that's specified by the DateInterval
object. Anomalies are
available for up to 90 days.
Usage¶
costexplorer_get_anomalies(MonitorArn, DateInterval, Feedback,
TotalImpact, NextPageToken, MaxResults)
Arguments¶
MonitorArn |
Retrieves all of the cost anomalies detected for a specific cost anomaly monitor Amazon Resource Name (ARN). |
DateInterval |
[required] Assigns the start and end dates for retrieving cost
anomalies. The returned anomaly object will have an
|
Feedback |
Filters anomaly results by the feedback field on the anomaly object. |
TotalImpact |
Filters anomaly results by the total impact field on the anomaly
object. For example, you can filter anomalies |
NextPageToken |
The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size. |
MaxResults |
The number of entries a paginated response contains. |
Value¶
A list with the following syntax:
list(
Anomalies = list(
list(
AnomalyId = "string",
AnomalyStartDate = "string",
AnomalyEndDate = "string",
DimensionValue = "string",
RootCauses = list(
list(
Service = "string",
Region = "string",
LinkedAccount = "string",
LinkedAccountName = "string",
UsageType = "string",
Impact = list(
Contribution = 123.0
)
)
),
AnomalyScore = list(
MaxScore = 123.0,
CurrentScore = 123.0
),
Impact = list(
MaxImpact = 123.0,
TotalImpact = 123.0,
TotalActualSpend = 123.0,
TotalExpectedSpend = 123.0,
TotalImpactPercentage = 123.0
),
MonitorArn = "string",
Feedback = "YES"|"NO"|"PLANNED_ACTIVITY"
)
),
NextPageToken = "string"
)
Request syntax¶
svc$get_anomalies(
MonitorArn = "string",
DateInterval = list(
StartDate = "string",
EndDate = "string"
),
Feedback = "YES"|"NO"|"PLANNED_ACTIVITY",
TotalImpact = list(
NumericOperator = "EQUAL"|"GREATER_THAN_OR_EQUAL"|"LESS_THAN_OR_EQUAL"|"GREATER_THAN"|"LESS_THAN"|"BETWEEN",
StartValue = 123.0,
EndValue = 123.0
),
NextPageToken = "string",
MaxResults = 123
)