Module Values.EventSource

Specifies the actions to be performed when the condition evaluates to TRUE.

Sourcetype nonrec t = {
  1. eventName : EventName.t;
    (*

    The name of the event.

    *)
  2. condition : Condition.t option;
    (*

    Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).

    *)
  3. actions : Actions.t option;
    (*

    The actions to be performed.

    *)
}
Sourceval context_ : string
Sourceval make : ?condition:??? -> ?actions:??? -> eventName:EventName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Boolean of UseBase64.t | `Integer of Seconds.t | `String of VariableName.t | `Structure of (string * [> `Enum of string | `String of ContentExpression.t | `Structure of (string * [> `String of AssetPropertyStringValue.t ]) list ]) list ]) list ]) list ] list | `String of EventName.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