Module Values.StateEnteredEventDetailsSource

Contains details about a state entered during an execution.

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

    The name of the state.

    *)
  2. input : SensitiveData.t option;
    (*

    The string that contains the JSON input data for the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

    *)
  3. inputDetails : HistoryEventExecutionDataDetails.t option;
    (*

    Contains details about the input for an execution history event.

    *)
}
Sourceval make : ?name:??? -> ?input:??? -> ?inputDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `Structure of (string * [> `Boolean of Truncated.t ]) list ]) 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