Module Values.WorkflowExecutionInfosSource

Contains a paginated list of information about workflow executions.

Sourcetype nonrec t = {
  1. executionInfos : WorkflowExecutionInfoList.t option;
    (*

    The list of workflow information structures.

    *)
  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 : ?executionInfos:??? -> ?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 * [> `Boolean of Canceled.t | `Enum of string | `List of [> `String of Tag.t ] list | `Structure of (string * [> `String of WorkflowId.t ]) 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