Module Values.WorkflowExecutionCompletedEventAttributesSource

Provides the details of the WorkflowExecutionCompleted event.

Sourcetype nonrec t = {
  1. result : Data.t option;
    (*

    The result produced by the workflow execution upon successful completion.

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

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

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