Module Values.AnomalyDetectorDescriptionSource

Detailed information about an anomaly detector.

Sourcetype nonrec t = {
  1. arn : AnomalyDetectorArn.t option;
    (*

    The Amazon Resource Name (ARN) of the anomaly detector.

    *)
  2. anomalyDetectorId : AnomalyDetectorId.t option;
    (*

    The unique identifier of the anomaly detector.

    *)
  3. alias : AnomalyDetectorAlias.t option;
    (*

    The user-friendly name of the anomaly detector.

    *)
  4. evaluationIntervalInSeconds : AnomalyDetectorEvaluationInterval.t option;
    (*

    The frequency, in seconds, at which the anomaly detector evaluates metrics.

    *)
  5. missingDataAction : AnomalyDetectorMissingDataAction.t option;
    (*

    The action taken when data is missing during evaluation.

    *)
  6. configuration : AnomalyDetectorConfiguration.t option;
    (*

    The algorithm configuration of the anomaly detector.

    *)
  7. labels : PrometheusMetricLabelMap.t option;
    (*

    The Amazon Managed Service for Prometheus metric labels associated with the anomaly detector.

    *)
  8. status : AnomalyDetectorStatus.t option;
    (*

    The current status of the anomaly detector.

    *)
  9. createdAt : Timestamp.t option;
    (*

    The timestamp when the anomaly detector was created.

    *)
  10. modifiedAt : Timestamp.t option;
    (*

    The timestamp when the anomaly detector was last modified.

    *)
  11. tags : TagMap.t option;
    (*

    The tags applied to the anomaly detector.

    *)
}
Sourceval make : ?arn:??? -> ?anomalyDetectorId:??? -> ?alias:??? -> ?evaluationIntervalInSeconds:??? -> ?missingDataAction:??? -> ?configuration:??? -> ?labels:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AnomalyDetectorEvaluationInterval.t | `Map of ([> `String of PrometheusMetricLabelKey.t ] * [> `String of PrometheusMetricLabelValue.t ]) list | `String of AnomalyDetectorArn.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t | `Structure of (string * [> `Integer of RandomCutForestConfigurationShingleSizeInteger.t | `String of RandomCutForestQuery.t | `Structure of (string * [> `Double of IgnoreNearExpectedAmountDouble.t ]) list ]) list ]) list | `Timestamp of Timestamp.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