Module Values.RequestCancelExternalWorkflowExecutionInitiatedEventAttributesSource

Provides the details of the RequestCancelExternalWorkflowExecutionInitiated event.

Sourcetype nonrec t = {
  1. workflowId : WorkflowId.t option;
    (*

    The workflowId of the external workflow execution to be canceled.

    *)
  2. runId : WorkflowRunIdOptional.t option;
    (*

    The runId of the external workflow execution to be canceled.

    *)
  3. decisionTaskCompletedEventId : EventId.t option;
    (*

    The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the RequestCancelExternalWorkflowExecution decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
  4. control : Data.t option;
    (*

    Data attached to the event that can be used by the decider in subsequent workflow tasks.

    *)
}
Sourceval make : ?workflowId:??? -> ?runId:??? -> ?decisionTaskCompletedEventId:??? -> ?control:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of EventId.t | `String of WorkflowId.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