Module Values.ChildWorkflowExecutionStartedEventAttributesSource

Provides the details of the ChildWorkflowExecutionStarted event.

Sourcetype nonrec t = {
  1. workflowExecution : WorkflowExecution.t option;
    (*

    The child workflow execution that was started.

    *)
  2. workflowType : WorkflowType.t option;
    (*

    The type of the child workflow execution.

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

    The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution Decision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
}
Sourceval make : ?workflowExecution:??? -> ?workflowType:??? -> ?initiatedEventId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of EventId.t | `Structure of (string * [> `String of WorkflowId.t ]) list ]) 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