Module Values.AnomalyDetectorSource

Contains information about one anomaly detector in the account.

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

    The ARN of the anomaly detector.

    *)
  2. detectorName : DetectorName.t option;
    (*

    The name of the anomaly detector.

    *)
  3. logGroupArnList : LogGroupArnList.t option;
    (*

    A list of the ARNs of the log groups that this anomaly detector watches.

    *)
  4. evaluationFrequency : EvaluationFrequency.t option;
    (*

    Specifies how often the anomaly detector runs and look for anomalies.

    *)
  5. filterPattern : FilterPattern.t option;
  6. anomalyDetectorStatus : AnomalyDetectorStatus.t option;
    (*

    Specifies the current status of the anomaly detector. To pause an anomaly detector, use the enabled parameter in the UpdateLogAnomalyDetector operation.

    *)
  7. kmsKeyId : KmsKeyId.t option;
    (*

    The ARN of the KMS key assigned to this anomaly detector, if any.

    *)
  8. creationTimeStamp : EpochMillis.t option;
    (*

    The date and time when this anomaly detector was created.

    *)
  9. lastModifiedTimeStamp : EpochMillis.t option;
    (*

    The date and time when this anomaly detector was most recently modified.

    *)
  10. anomalyVisibilityTime : AnomalyVisibilityTime.t option;
    (*

    The number of days used as the life cycle of anomalies. After this time, anomalies are automatically baselined and the anomaly detector model will treat new occurrences of similar event as normal.

    *)
}
Sourceval make : ?anomalyDetectorArn:??? -> ?detectorName:??? -> ?logGroupArnList:??? -> ?evaluationFrequency:??? -> ?filterPattern:??? -> ?anomalyDetectorStatus:??? -> ?kmsKeyId:??? -> ?creationTimeStamp:??? -> ?lastModifiedTimeStamp:??? -> ?anomalyVisibilityTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of LogGroupArn.t ] list | `Long of EpochMillis.t | `String of AnomalyDetectorArn.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