Module Values.EventTriggerLimitsSource

Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.

Sourcetype nonrec t = {
  1. eventExpiration : OptionalLong.t option;
    (*

    In milliseconds. Specifies that an event will only trigger the destination if it is processed within a certain latency period.

    *)
  2. periods : Periods.t option;
    (*

    A list of time periods during which the limits apply.

    *)
}
Sourceval make : ?eventExpiration:??? -> ?periods:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of MaxSize24.t ]) list ] list | `Long of OptionalLong.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