Module Values.RunSource

Specifies the runId of a workflow execution.

Sourcetype nonrec t = {
  1. runId : WorkflowRunId.t option;
    (*

    The runId of a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.

    *)
}
Sourcetype nonrec error = [
  1. | `DefaultUndefinedFault of DefaultUndefinedFault.t
  2. | `LimitExceededFault of LimitExceededFault.t
  3. | `OperationNotPermittedFault of OperationNotPermittedFault.t
  4. | `TypeDeprecatedFault of TypeDeprecatedFault.t
  5. | `UnknownResourceFault of UnknownResourceFault.t
  6. | `WorkflowExecutionAlreadyStartedFault of WorkflowExecutionAlreadyStartedFault.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?runId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DefaultUndefinedFault of DefaultUndefinedFault.t | `LimitExceededFault of LimitExceededFault.t | `OperationNotPermittedFault of OperationNotPermittedFault.t | `TypeDeprecatedFault of TypeDeprecatedFault.t | `UnknownResourceFault of UnknownResourceFault.t | `Unknown_operation_error of string * string option | `WorkflowExecutionAlreadyStartedFault of WorkflowExecutionAlreadyStartedFault.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DefaultUndefinedFault of DefaultUndefinedFault.t | `LimitExceededFault of LimitExceededFault.t | `OperationNotPermittedFault of OperationNotPermittedFault.t | `TypeDeprecatedFault of TypeDeprecatedFault.t | `UnknownResourceFault of UnknownResourceFault.t | `Unknown_operation_error of string * string option | `WorkflowExecutionAlreadyStartedFault of WorkflowExecutionAlreadyStartedFault.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkflowRunId.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