Module Values.DateRangeSource

A date range for the date filter.

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

    A date range value for the date filter.

    *)
  2. unit : DateRangeUnit.t option;
    (*

    A date range unit for the date filter.

    *)
  3. comparison : DateRangeComparison.t option;
    (*

    The condition to apply to a date range filter. If you specify WITHIN, Security Hub filters for dates within the specified date range. If you specify OLDER_THAN, Security Hub filters for dates before the specified date range. If you don't specify a value, the default is WITHIN.

    *)
}
Sourceval make : ?value:??? -> ?unit:??? -> ?comparison:??? -> 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