Module Values.HistorySource

Paginated representation of a workflow history for a workflow execution. This is the up to date, complete and authoritative record of the events related to all tasks and events in the life of the workflow execution.

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

    The list of history events.

    *)
  2. nextPageToken : PageToken.t option;
    (*

    If a NextPageToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken. Keep all other arguments unchanged. The configured maximumPageSize determines how many results can be returned in a single call.

    *)
}
Sourcetype nonrec error = [
  1. | `OperationNotPermittedFault of OperationNotPermittedFault.t
  2. | `UnknownResourceFault of UnknownResourceFault.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?events:??? -> ?nextPageToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `OperationNotPermittedFault of OperationNotPermittedFault.t | `UnknownResourceFault of UnknownResourceFault.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `OperationNotPermittedFault of OperationNotPermittedFault.t | `UnknownResourceFault of UnknownResourceFault.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 | `Long of EventId.t | `Structure of (string * [> `Enum of string | `List of [> `String of Tag.t ] list | `Long of EventId.t | `String of Data.t | `Structure of (string * [> `String of Name.t ]) list ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of PageToken.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