Module Values.TransitionEventSource

Specifies the actions performed and the next state entered when a condition evaluates to TRUE.

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

    The name of the transition event.

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

    Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.

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

    The actions to be performed.

    *)
  4. nextState : StateName.t;
    (*

    The next state to enter.

    *)
}
Sourceval context_ : string
Sourceval make : ?actions:??? -> eventName:EventName.t -> condition:Condition.t -> nextState:StateName.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