Module Values.GetAnomaliesRequestSource

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.

Sourcetype nonrec t = {
  1. monitorArn : GenericString.t option;
    (*

    Retrieves all of the cost anomalies detected for a specific cost anomaly monitor Amazon Resource Name (ARN).

    *)
  2. dateInterval : AnomalyDateInterval.t;
    (*

    Assigns the start and end dates for retrieving cost anomalies. The returned anomaly object will have an AnomalyEndDate in the specified time range.

    *)
  3. feedback : AnomalyFeedbackType.t option;
    (*

    Filters anomaly results by the feedback field on the anomaly object.

    *)
  4. totalImpact : TotalImpactFilter.t option;
    (*

    Filters anomaly results by the total impact field on the anomaly object. For example, you can filter anomalies GREATER_THAN 200.00 to retrieve anomalies, with an estimated dollar impact greater than 200.

    *)
  5. nextPageToken : NextPageToken.t option;
    (*

    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.

    *)
  6. maxResults : PageSize.t option;
    (*

    The number of entries a paginated response contains.

    *)
}
Sourceval context_ : string
Sourceval make : ?monitorArn:??? -> ?feedback:??? -> ?totalImpact:??? -> ?nextPageToken:??? -> ?maxResults:??? -> dateInterval:AnomalyDateInterval.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PageSize.t | `String of GenericString.t | `Structure of (string * [> `Double of GenericDouble.t | `Enum of string | `String of YearMonthDay.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t