Module Values.SuppressionPeriodSource

If you are suppressing an anomaly temporariliy, this structure defines how long the suppression period is to be.

Sourcetype nonrec t = {
  1. value : Integer.t option;
    (*

    Specifies the number of seconds, minutes or hours to suppress this anomaly. There is no maximum.

    *)
  2. suppressionUnit : SuppressionUnit.t option;
    (*

    Specifies whether the value of value is in seconds, minutes, or hours.

    *)
}
Sourceval make : ?value:??? -> ?suppressionUnit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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