Module Values.GetAnomaliesResponseSource

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. anomalies : Anomalies.t option;
    (*

    A list of cost anomalies.

    *)
  2. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidNextTokenException of InvalidNextTokenException.t
  2. | `LimitExceededException of LimitExceededException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?anomalies:??? -> ?nextPageToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidNextTokenException of InvalidNextTokenException.t | `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidNextTokenException of InvalidNextTokenException.t | `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of GenericString.t | `Structure of (string * [> `Double of GenericDouble.t ]) list ]) list ] list | `String of GenericString.t | `Structure of (string * [> `Double of GenericDouble.t ]) list ]) list ] list | `String of NextPageToken.t ]) 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