Module Values.GetDurableExecutionHistoryResponseSource

The response from the GetDurableExecutionHistory operation, containing the execution history and events.

Sourcetype nonrec t = {
  1. events : Events.t option;
    (*

    An array of execution history events, ordered chronologically unless ReverseOrder is set to true. Each event represents a significant occurrence during the execution, such as step completion or callback resolution.

    *)
  2. nextMarker : String_.t option;
    (*

    If present, indicates that more history events are available. Use this value as the Marker parameter in a subsequent request to retrieve the next page of results.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterValueException of InvalidParameterValueException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceException of ServiceException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?events:??? -> ?nextMarker:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of EventId.t | `String of OperationSubType.t | `Structure of (string * [> `Integer of DurationSeconds.t | `String of NamespacedFunctionName.t | `Structure of (string * [> `Boolean of Truncated.t | `Integer of AttemptCount.t | `String of InputPayload.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.t ]) list ]) list | `Timestamp of ExecutionTimestamp.t ]) list | `Timestamp of ExecutionTimestamp.t ]) list ] list | `String of String_.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