Module Values.ArchiveRuleSummarySource

Contains information about an archive rule. Archive rules automatically archive new findings that meet the criteria you define when you create the rule.

Sourcetype nonrec t = {
  1. ruleName : Name.t option;
    (*

    The name of the archive rule.

    *)
  2. filter : FilterCriteriaMap.t option;
    (*

    A filter used to define the archive rule.

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

    The time at which the archive rule was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The time at which the archive rule was last updated.

    *)
}
Sourceval make : ?ruleName:??? -> ?filter:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list ]) list ]) list | `String of Name.t | `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