Module Values.AnomalySource

An unusual cost pattern. This consists of the detailed metadata and the current status of the anomaly object.

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

    The unique identifier for the anomaly.

    *)
  2. anomalyStartDate : YearMonthDay.t option;
    (*

    The first day the anomaly is detected.

    *)
  3. anomalyEndDate : YearMonthDay.t option;
    (*

    The last day the anomaly is detected.

    *)
  4. dimensionValue : GenericString.t option;
    (*

    The dimension for the anomaly (for example, an Amazon Web Services service in a service monitor).

    *)
  5. rootCauses : RootCauses.t option;
    (*

    The list of identified root causes for the anomaly.

    *)
  6. anomalyScore : AnomalyScore.t option;
    (*

    The latest and maximum score for the anomaly.

    *)
  7. impact : Impact.t option;
    (*

    The dollar impact for the anomaly.

    *)
  8. monitorArn : GenericString.t option;
    (*

    The Amazon Resource Name (ARN) for the cost monitor that generated this anomaly.

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

    The feedback value.

    *)
}
Sourceval make : ?anomalyId:??? -> ?anomalyStartDate:??? -> ?anomalyEndDate:??? -> ?dimensionValue:??? -> ?rootCauses:??? -> ?anomalyScore:??? -> ?impact:??? -> ?monitorArn:??? -> ?feedback:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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